2011-08-04 20:32:01 +00:00
|
|
|
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
|
|
|
|
|
|
|
|
var assert = require('assert');
|
|
|
|
var EventEmitter = require('events').EventEmitter;
|
|
|
|
var net = require('net');
|
|
|
|
var tls = require('tls');
|
|
|
|
var util = require('util');
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
var Attribute = require('../attribute');
|
|
|
|
var Change = require('../change');
|
|
|
|
var Control = require('../controls/index').Control;
|
|
|
|
var Protocol = require('../protocol');
|
|
|
|
var dn = require('../dn');
|
|
|
|
var errors = require('../errors');
|
|
|
|
var filters = require('../filters');
|
|
|
|
var messages = require('../messages');
|
|
|
|
var url = require('../url');
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///--- Globals
|
|
|
|
|
2011-11-07 22:13:53 +00:00
|
|
|
var AbandonRequest = messages.AbandonRequest;
|
2011-08-04 20:32:01 +00:00
|
|
|
var AddRequest = messages.AddRequest;
|
|
|
|
var BindRequest = messages.BindRequest;
|
|
|
|
var CompareRequest = messages.CompareRequest;
|
|
|
|
var DeleteRequest = messages.DeleteRequest;
|
|
|
|
var ExtendedRequest = messages.ExtendedRequest;
|
|
|
|
var ModifyRequest = messages.ModifyRequest;
|
|
|
|
var ModifyDNRequest = messages.ModifyDNRequest;
|
|
|
|
var SearchRequest = messages.SearchRequest;
|
|
|
|
var UnbindRequest = messages.UnbindRequest;
|
2011-11-08 21:10:39 +00:00
|
|
|
var UnbindResponse = messages.UnbindResponse;
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
var LDAPResult = messages.LDAPResult;
|
|
|
|
var SearchEntry = messages.SearchEntry;
|
2011-09-27 18:49:33 +00:00
|
|
|
var SearchReference = messages.SearchReference;
|
2011-08-04 20:32:01 +00:00
|
|
|
var SearchResponse = messages.SearchResponse;
|
|
|
|
var Parser = messages.Parser;
|
|
|
|
|
|
|
|
var Filter = filters.Filter;
|
|
|
|
var PresenceFilter = filters.PresenceFilter;
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
var ConnectionError = errors.ConnectionError;
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
var CMP_EXPECT = [errors.LDAP_COMPARE_TRUE, errors.LDAP_COMPARE_FALSE];
|
2011-08-04 20:32:01 +00:00
|
|
|
var MAX_MSGID = Math.pow(2, 31) - 1;
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
// node 0.6 got rid of FDs, so make up a client id for logging
|
|
|
|
var CLIENT_ID = 0;
|
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
///--- Internal Helpers
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
function nextClientId() {
|
|
|
|
if (++CLIENT_ID === MAX_MSGID)
|
|
|
|
return 1;
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
return CLIENT_ID;
|
|
|
|
}
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
function validateControls(controls) {
|
|
|
|
if (Array.isArray(controls)) {
|
2012-02-24 00:02:52 +00:00
|
|
|
controls.forEach(function (c) {
|
2011-08-04 20:32:01 +00:00
|
|
|
if (!(c instanceof Control))
|
|
|
|
throw new TypeError('controls must be [Control]');
|
|
|
|
});
|
|
|
|
} else if (controls instanceof Control) {
|
|
|
|
controls = [controls];
|
|
|
|
} else {
|
|
|
|
throw new TypeError('controls must be [Control]');
|
|
|
|
}
|
|
|
|
|
|
|
|
return controls;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
function setupSocket(socket, opts) {
|
|
|
|
var log = opts.log;
|
|
|
|
|
|
|
|
socket.ldap = {
|
|
|
|
id: opts.url ? opts.url.href : opts.socketPath,
|
|
|
|
messageID: 0,
|
|
|
|
messages: {},
|
|
|
|
getNextMessageID: function getNextMessageID() {
|
|
|
|
if (++socket.ldap.messageID >= MAX_MSGID)
|
|
|
|
socket.ldap.messageID = 1;
|
|
|
|
|
|
|
|
return socket.ldap.messageID;
|
|
|
|
},
|
|
|
|
parser: new Parser({
|
|
|
|
log: log
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
// This won't be set on TLS. So. Very. Annoying.
|
|
|
|
if (typeof (socket.setKeepAlive) !== 'function') {
|
|
|
|
socket.setKeepAlive = function setKeepAlive(enable, delay) {
|
|
|
|
return socket.socket ? socket.socket.setKeepAlive(enable, delay) : false;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// On close we have to walk the outstanding messages and go invoke their
|
|
|
|
// callback with an error
|
|
|
|
socket.on('close', function onClose(had_err) {
|
|
|
|
if (log.trace())
|
|
|
|
log.trace('close event had_err=%s', had_err ? 'yes' : 'no');
|
|
|
|
|
|
|
|
opts.emit('close', had_err);
|
|
|
|
Object.keys(socket.ldap.messages).forEach(function (msgid) {
|
|
|
|
var err;
|
|
|
|
if (socket.unbindMessageID !== parseInt(msgid, 10)) {
|
|
|
|
err = new ConnectionError(socket.ldap.id + ' closed');
|
|
|
|
} else {
|
|
|
|
err = new UnbindResponse({
|
|
|
|
messageID: msgid
|
|
|
|
});
|
|
|
|
err.status = 'unbind';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof (socket.ldap.messages[msgid]) === 'function') {
|
|
|
|
var callback = socket.ldap.messages[msgid];
|
|
|
|
delete socket.ldap.messages[msgid];
|
|
|
|
return callback(err);
|
|
|
|
} else if (socket.ldap.messages[msgid]) {
|
|
|
|
if (err instanceof Error)
|
|
|
|
socket.ldap.messages[msgid].emit('error', err);
|
|
|
|
delete socket.ldap.messages[msgid];
|
|
|
|
}
|
|
|
|
|
|
|
|
delete socket.ldap.parser;
|
|
|
|
delete socket.ldap;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('data', function onData(data) {
|
|
|
|
if (log.trace())
|
|
|
|
log.trace('data event: %s', util.inspect(data));
|
|
|
|
|
|
|
|
socket.ldap.parser.write(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('end', function onEnd() {
|
|
|
|
if (log.trace())
|
|
|
|
log.trace('end event');
|
|
|
|
|
|
|
|
opts.emit('end');
|
|
|
|
socket.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('error', function onError(err) {
|
|
|
|
if (log.trace())
|
|
|
|
log.trace({err: err}, 'error event: %s', new Error().stack);
|
|
|
|
|
|
|
|
if (opts.listeners('error').length)
|
|
|
|
opts.emit('error', err);
|
|
|
|
|
|
|
|
socket.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('timeout', function onTimeout() {
|
|
|
|
if (log.trace())
|
|
|
|
log.trace('timeout event');
|
|
|
|
|
|
|
|
opts.emit('socketTimeout');
|
|
|
|
socket.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
// The "router"
|
|
|
|
socket.ldap.parser.on('message', function onMessage(message) {
|
|
|
|
message.connection = socket;
|
|
|
|
var callback = socket.ldap.messages[message.messageID];
|
|
|
|
|
|
|
|
if (!callback) {
|
|
|
|
log.error({message: message.json}, 'unsolicited message');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(message);
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.ldap.parser.on('error', function onParseError(err) {
|
2012-04-27 03:47:03 +00:00
|
|
|
log.trace({err: err}, 'parser error event');
|
2012-04-27 03:23:43 +00:00
|
|
|
|
|
|
|
if (opts.listeners('error').length)
|
|
|
|
opts.emit('error', err);
|
|
|
|
|
|
|
|
socket.end();
|
|
|
|
});
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2011-09-26 23:45:49 +00:00
|
|
|
|
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
///--- API
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a new client.
|
|
|
|
*
|
|
|
|
* The options object is required, and must contain either a URL (string) or
|
|
|
|
* a socketPath (string); the socketPath is only if you want to talk to an LDAP
|
2012-02-18 08:54:22 +00:00
|
|
|
* server over a Unix Domain Socket. Additionally, you can pass in a bunyan
|
|
|
|
* option that is the result of `new Logger()`, presumably after you've
|
2011-08-04 20:32:01 +00:00
|
|
|
* configured it.
|
|
|
|
*
|
|
|
|
* @param {Object} options must have either url or socketPath.
|
|
|
|
* @throws {TypeError} on bad input.
|
|
|
|
*/
|
|
|
|
function Client(options) {
|
2012-04-27 03:23:43 +00:00
|
|
|
assert.ok(options);
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
EventEmitter.call(this, options);
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
var _url;
|
2012-02-18 22:58:40 +00:00
|
|
|
if (options.url)
|
2012-04-27 03:23:43 +00:00
|
|
|
_url = url.parse(options.url);
|
|
|
|
|
|
|
|
this.connectTimeout = parseInt((options.connectTimeout || 0), 10);
|
|
|
|
this.host = _url ? _url.hostname : undefined;
|
|
|
|
this.log = options.log.child({clazz: 'Client'}, true);
|
|
|
|
this.port = _url ? _url.port : false;
|
|
|
|
this.secure = _url ? _url.secure : false;
|
|
|
|
this.socketPath = options.socketPath || false;
|
|
|
|
this.timeout = parseInt((options.timeout || 0), 10);
|
|
|
|
this.url = _url;
|
|
|
|
|
|
|
|
this.socket = this._connect();
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
|
|
|
util.inherits(Client, EventEmitter);
|
|
|
|
module.exports = Client;
|
|
|
|
|
|
|
|
|
2011-11-07 22:13:53 +00:00
|
|
|
/**
|
|
|
|
* Sends an abandon request to the LDAP server.
|
|
|
|
*
|
|
|
|
* The callback will be invoked as soon as the data is flushed out to the
|
|
|
|
* network, as there is never a response from abandon.
|
|
|
|
*
|
|
|
|
* @param {Number} messageID the messageID to abandon.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.abandon = function abandon(messageID, controls, callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (messageID) !== 'number')
|
2011-11-07 22:13:53 +00:00
|
|
|
throw new TypeError('messageID (number) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-11-07 22:13:53 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-11-07 22:13:53 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-11-07 22:13:53 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var req = new AbandonRequest({
|
|
|
|
abandonID: messageID,
|
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, 'abandon', null, callback);
|
2011-11-07 22:13:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
/**
|
|
|
|
* Adds an entry to the LDAP server.
|
|
|
|
*
|
2011-08-04 21:25:12 +00:00
|
|
|
* Entry can be either [Attribute] or a plain JS object where the
|
|
|
|
* values are either a plain value or an array of values. Any value (that's
|
|
|
|
* not an array) will get converted to a string, so keep that in mind.
|
|
|
|
*
|
2011-08-04 20:32:01 +00:00
|
|
|
* @param {String} name the DN of the entry to add.
|
2011-08-04 21:25:12 +00:00
|
|
|
* @param {Object} entry an array of Attributes to be added or a JS object.
|
2011-08-04 20:32:01 +00:00
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.add = function add(name, entry, controls, callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (entry) !== 'object')
|
2011-08-04 21:25:12 +00:00
|
|
|
throw new TypeError('entry (object) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
2011-08-04 21:25:12 +00:00
|
|
|
if (Array.isArray(entry)) {
|
2012-02-24 00:02:52 +00:00
|
|
|
entry.forEach(function (a) {
|
2011-08-04 21:25:12 +00:00
|
|
|
if (!Attribute.isAttribute(a))
|
|
|
|
throw new TypeError('entry must be an Array of Attributes');
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
var save = entry;
|
|
|
|
|
|
|
|
entry = [];
|
2012-02-24 00:02:52 +00:00
|
|
|
Object.keys(save).forEach(function (k) {
|
2011-08-04 21:25:12 +00:00
|
|
|
var attr = new Attribute({type: k});
|
|
|
|
if (Array.isArray(save[k])) {
|
2012-02-24 00:02:52 +00:00
|
|
|
save[k].forEach(function (v) {
|
2011-08-04 21:25:12 +00:00
|
|
|
attr.addValue(v.toString());
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
attr.addValue(save[k].toString());
|
|
|
|
}
|
|
|
|
entry.push(attr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
var req = new AddRequest({
|
|
|
|
entry: dn.parse(name),
|
2011-08-04 21:25:12 +00:00
|
|
|
attributes: entry,
|
2011-08-04 20:32:01 +00:00
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], null, callback);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a simple authentication against the server.
|
|
|
|
*
|
|
|
|
* @param {String} name the DN to bind as.
|
|
|
|
* @param {String} credentials the userPassword associated with name.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
|
|
|
Client.prototype.bind = function bind(name, credentials, controls, callback) {
|
|
|
|
if (typeof (name) !== 'string' && !(name instanceof dn.DN))
|
|
|
|
throw new TypeError('name (string) required');
|
|
|
|
if (typeof (credentials) !== 'string')
|
|
|
|
throw new TypeError('credentials (string) required');
|
|
|
|
if (typeof (controls) === 'function') {
|
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
|
|
|
controls = validateControls(controls);
|
|
|
|
}
|
|
|
|
if (typeof (callback) !== 'function')
|
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var req = new BindRequest({
|
|
|
|
name: name || '',
|
|
|
|
authentication: 'Simple',
|
|
|
|
credentials: credentials || '',
|
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], null, callback);
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compares an attribute/value pair with an entry on the LDAP server.
|
|
|
|
*
|
|
|
|
* @param {String} name the DN of the entry to compare attributes with.
|
2011-08-04 21:25:12 +00:00
|
|
|
* @param {String} attr name of an attribute to check.
|
2011-08-04 20:32:01 +00:00
|
|
|
* @param {String} value value of an attribute to check.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, boolean, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.compare = function compare(name,
|
|
|
|
attr,
|
|
|
|
value,
|
|
|
|
controls,
|
|
|
|
callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (attr) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('attribute (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (value) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('value (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var req = new CompareRequest({
|
|
|
|
entry: dn.parse(name),
|
2011-08-04 21:25:12 +00:00
|
|
|
attribute: attr,
|
2011-08-04 20:32:01 +00:00
|
|
|
value: value,
|
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
2012-02-24 00:02:52 +00:00
|
|
|
return this._send(req, CMP_EXPECT, null, function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
if (err)
|
|
|
|
return callback(err);
|
|
|
|
|
|
|
|
return callback(null, (res.status === errors.LDAP_COMPARE_TRUE), res);
|
2012-02-18 22:58:40 +00:00
|
|
|
});
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes an entry from the LDAP server.
|
|
|
|
*
|
|
|
|
* @param {String} name the DN of the entry to delete.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.del = function del(name, controls, callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var req = new DeleteRequest({
|
|
|
|
entry: dn.parse(name),
|
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], null, callback);
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs an extended operation on the LDAP server.
|
|
|
|
*
|
|
|
|
* Pretty much none of the LDAP extended operations return an OID
|
|
|
|
* (responseName), so I just don't bother giving it back in the callback.
|
|
|
|
* It's on the third param in `res` if you need it.
|
|
|
|
*
|
|
|
|
* @param {String} name the OID of the extended operation to perform.
|
|
|
|
* @param {String} value value to pass in for this operation.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, value, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.exop = function exop(name, value, controls, callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (value) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = value;
|
|
|
|
controls = [];
|
|
|
|
value = '';
|
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (value) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('value (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var req = new ExtendedRequest({
|
|
|
|
requestName: name,
|
|
|
|
requestValue: value,
|
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
2012-02-24 00:02:52 +00:00
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], null, function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
if (err)
|
|
|
|
return callback(err);
|
|
|
|
|
|
|
|
return callback(null, res.responseValue || '', res);
|
2012-02-18 22:58:40 +00:00
|
|
|
});
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs an LDAP modify against the server.
|
|
|
|
*
|
|
|
|
* @param {String} name the DN of the entry to modify.
|
|
|
|
* @param {Change} change update to perform (can be [Change]).
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.modify = function modify(name, change, controls, callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (change) !== 'object')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('change (Change) required');
|
2011-11-08 21:31:00 +00:00
|
|
|
|
|
|
|
var changes = [];
|
|
|
|
|
|
|
|
function changeFromObject(change) {
|
|
|
|
if (!change.operation && !change.type)
|
|
|
|
throw new Error('change.operation required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (change.modification) !== 'object')
|
2011-11-08 21:31:00 +00:00
|
|
|
throw new Error('change.modification (object) required');
|
|
|
|
|
2012-02-24 00:02:52 +00:00
|
|
|
Object.keys(change.modification).forEach(function (k) {
|
2011-11-08 21:31:00 +00:00
|
|
|
var mod = {};
|
|
|
|
mod[k] = change.modification[k];
|
|
|
|
changes.push(new Change({
|
|
|
|
operation: change.operation || change.type,
|
|
|
|
modification: mod
|
|
|
|
}));
|
|
|
|
});
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2011-11-08 21:31:00 +00:00
|
|
|
|
|
|
|
if (change instanceof Change) {
|
|
|
|
changes.push(change);
|
|
|
|
} else if (Array.isArray(change)) {
|
2012-02-24 00:02:52 +00:00
|
|
|
change.forEach(function (c) {
|
2011-11-08 21:31:00 +00:00
|
|
|
if (c instanceof Change) {
|
|
|
|
changes.push(c);
|
|
|
|
} else {
|
|
|
|
changeFromObject(c);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
changeFromObject(change);
|
|
|
|
}
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var req = new ModifyRequest({
|
|
|
|
object: dn.parse(name),
|
2011-11-08 21:31:00 +00:00
|
|
|
changes: changes,
|
2011-08-04 20:32:01 +00:00
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], null, callback);
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs an LDAP modifyDN against the server.
|
|
|
|
*
|
|
|
|
* This does not allow you to keep the old DN, as while the LDAP protocol
|
|
|
|
* has a facility for that, it's stupid. Just Search/Add.
|
|
|
|
*
|
|
|
|
* This will automatically deal with "new superior" logic.
|
|
|
|
*
|
|
|
|
* @param {String} name the DN of the entry to modify.
|
|
|
|
* @param {String} newName the new DN to move this entry to.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.modifyDN = function modifyDN(name,
|
|
|
|
newName,
|
|
|
|
controls,
|
|
|
|
callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (newName) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('newName (string) required');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2012-01-24 17:43:46 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
|
|
|
var DN = dn.parse(name);
|
|
|
|
var newDN = dn.parse(newName);
|
|
|
|
|
|
|
|
var req = new ModifyDNRequest({
|
|
|
|
entry: DN,
|
|
|
|
deleteOldRdn: true,
|
|
|
|
controls: controls
|
|
|
|
});
|
|
|
|
|
|
|
|
if (newDN.length !== 1) {
|
|
|
|
req.newRdn = dn.parse(newDN.rdns.shift().toString());
|
|
|
|
req.newSuperior = newDN;
|
|
|
|
} else {
|
|
|
|
req.newRdn = newDN;
|
|
|
|
}
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], null, callback);
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs an LDAP search against the server.
|
|
|
|
*
|
|
|
|
* Note that the defaults for options are a 'base' search, if that's what
|
|
|
|
* you want you can just pass in a string for options and it will be treated
|
|
|
|
* as the search filter. Also, you can either pass in programatic Filter
|
|
|
|
* objects or a filter string as the filter option.
|
|
|
|
*
|
|
|
|
* Note that this method is 'special' in that the callback 'res' param will
|
|
|
|
* have two important events on it, namely 'entry' and 'end' that you can hook
|
|
|
|
* to. The former will emit a SearchEntry object for each record that comes
|
|
|
|
* back, and the latter will emit a normal LDAPResult object.
|
|
|
|
*
|
|
|
|
* @param {String} base the DN in the tree to start searching at.
|
|
|
|
* @param {Object} options parameters:
|
|
|
|
* - {String} scope default of 'base'.
|
|
|
|
* - {String} filter default of '(objectclass=*)'.
|
|
|
|
* - {Array} attributes [string] to return.
|
|
|
|
* - {Boolean} attrsOnly whether to return values.
|
|
|
|
* @param {Control} controls (optional) either a Control or [Control].
|
|
|
|
* @param {Function} callback of the form f(err, res).
|
|
|
|
* @throws {TypeError} on invalid input.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.search = function search(base, options, controls, callback) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (base) !== 'string' && !(base instanceof dn.DN))
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('base (string) required');
|
|
|
|
if (Array.isArray(options) || (options instanceof Control)) {
|
|
|
|
controls = options;
|
|
|
|
options = {};
|
2012-02-18 08:15:52 +00:00
|
|
|
} else if (typeof (options) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = options;
|
|
|
|
controls = [];
|
|
|
|
options = {
|
|
|
|
filter: new PresenceFilter({attribute: 'objectclass'})
|
|
|
|
};
|
2012-02-18 08:15:52 +00:00
|
|
|
} else if (typeof (options) === 'string') {
|
2011-08-04 20:32:01 +00:00
|
|
|
options = {filter: filters.parseString(options)};
|
2012-02-18 08:15:52 +00:00
|
|
|
} else if (typeof (options) !== 'object') {
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('options (object) required');
|
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (options.filter) === 'string') {
|
2011-08-12 23:37:47 +00:00
|
|
|
options.filter = filters.parseString(options.filter);
|
|
|
|
} else if (!options.filter) {
|
|
|
|
options.filter = new PresenceFilter({attribute: 'objectclass'});
|
|
|
|
} else if (!(options.filter instanceof Filter)) {
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('options.filter (Filter) required');
|
2011-08-12 23:37:47 +00:00
|
|
|
}
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (controls) === 'function') {
|
2011-08-04 20:32:01 +00:00
|
|
|
callback = controls;
|
|
|
|
controls = [];
|
|
|
|
} else {
|
2011-09-16 16:06:07 +00:00
|
|
|
controls = validateControls(controls);
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('callback (function) required');
|
|
|
|
|
2012-01-19 23:39:16 +00:00
|
|
|
if (options.attributes) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (!Array.isArray(options.attributes)) {
|
|
|
|
if (typeof (options.attributes) === 'string') {
|
|
|
|
options.attributes = [options.attributes];
|
|
|
|
} else {
|
|
|
|
throw new TypeError('options.attributes must be an Array of Strings');
|
|
|
|
}
|
2012-01-19 23:39:16 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
var req = new SearchRequest({
|
2012-02-18 08:15:52 +00:00
|
|
|
baseObject: typeof (base) === 'string' ? dn.parse(base) : base,
|
2011-08-04 20:32:01 +00:00
|
|
|
scope: options.scope || 'base',
|
|
|
|
filter: options.filter,
|
|
|
|
derefAliases: Protocol.NEVER_DEREF_ALIASES,
|
|
|
|
sizeLimit: options.sizeLimit || 0,
|
|
|
|
timeLimit: options.timeLimit || 10,
|
|
|
|
typesOnly: options.typesOnly || false,
|
2011-09-16 16:06:07 +00:00
|
|
|
attributes: options.attributes || [],
|
|
|
|
controls: controls
|
2011-08-04 20:32:01 +00:00
|
|
|
});
|
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, [errors.LDAP_SUCCESS], new EventEmitter(), callback);
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unbinds this client from the LDAP server.
|
|
|
|
*
|
|
|
|
* Note that unbind does not have a response, so this callback is actually
|
|
|
|
* optional; either way, the client is disconnected.
|
|
|
|
*
|
|
|
|
* @param {Function} callback of the form f(err).
|
|
|
|
* @throws {TypeError} if you pass in callback as not a function.
|
|
|
|
*/
|
2012-02-18 22:58:40 +00:00
|
|
|
Client.prototype.unbind = function unbind(callback) {
|
2011-08-04 20:32:01 +00:00
|
|
|
if (!callback)
|
2012-02-24 00:02:52 +00:00
|
|
|
callback = function () {};
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
if (typeof (callback) !== 'function')
|
|
|
|
throw new TypeError('callback must be a function');
|
2011-09-26 23:45:49 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
if (!this.socket)
|
2011-11-09 22:55:13 +00:00
|
|
|
return callback();
|
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
var req = new UnbindRequest();
|
2012-02-18 22:58:40 +00:00
|
|
|
return this._send(req, 'unbind', null, callback);
|
2011-08-04 20:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
|
|
|
|
///--- Private API
|
|
|
|
|
|
|
|
Client.prototype._connect = function _connect() {
|
2012-02-18 22:58:40 +00:00
|
|
|
var log = this.log;
|
|
|
|
var proto = this.secure ? tls : net;
|
2011-08-04 20:32:01 +00:00
|
|
|
var self = this;
|
2012-04-27 03:23:43 +00:00
|
|
|
var socket = null;
|
2012-02-18 22:58:40 +00:00
|
|
|
var timer = false;
|
2012-01-24 17:43:46 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
function onConnect() {
|
2012-04-13 22:42:58 +00:00
|
|
|
if (timer)
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
assert.ok(socket.ldap);
|
2012-04-13 22:42:58 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
socket.ldap.id = nextClientId() + '__' + socket.ldap.id;
|
|
|
|
self.log = self.log.child({ldap_id: socket.ldap.id}, true);
|
2012-04-13 22:42:58 +00:00
|
|
|
|
|
|
|
if (log.trace())
|
2012-04-27 03:23:43 +00:00
|
|
|
log.trace('connect event');
|
2012-04-13 22:42:58 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
self.socket = socket;
|
|
|
|
self.emit('connect', socket);
|
|
|
|
}
|
2012-04-13 22:42:58 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
socket = proto.createConnection((this.port || this.socketPath),
|
|
|
|
(this.host ? this.host : onConnect),
|
|
|
|
(this.host ? onConnect : undefined));
|
|
|
|
|
|
|
|
setupSocket(socket, this);
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 22:58:40 +00:00
|
|
|
if (this.connectTimeout) {
|
2012-04-27 03:23:43 +00:00
|
|
|
timer = setTimeout(function onConnectTimeout() {
|
|
|
|
socket.destroy();
|
2011-11-09 22:44:12 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
self.emit('connectTimeout');
|
2012-02-18 22:58:40 +00:00
|
|
|
}, this.connectTimeout);
|
2011-11-09 22:44:12 +00:00
|
|
|
}
|
2011-09-26 23:45:49 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
return socket;
|
2011-10-17 23:37:09 +00:00
|
|
|
};
|
2012-02-18 22:58:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
Client.prototype._send = function _send(message, expect, emitter, callback) {
|
|
|
|
assert.ok(message);
|
|
|
|
assert.ok(expect);
|
|
|
|
assert.ok(typeof (emitter) !== undefined);
|
|
|
|
assert.ok(callback);
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
var conn = this.socket;
|
|
|
|
var log = this.log;
|
2012-02-18 22:58:40 +00:00
|
|
|
var self = this;
|
|
|
|
var timer = false;
|
|
|
|
|
|
|
|
if (!conn)
|
|
|
|
return callback(new ConnectionError('no socket'));
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
function _done(event, obj) {
|
|
|
|
if (emitter)
|
|
|
|
return emitter.emit(event, obj);
|
|
|
|
|
|
|
|
if (event === 'error')
|
|
|
|
return callback(obj);
|
|
|
|
|
|
|
|
return callback(null, obj);
|
|
|
|
} // end function _done(event, obj)
|
|
|
|
|
|
|
|
function messageCallback(msg) {
|
2012-02-18 22:58:40 +00:00
|
|
|
if (timer)
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
2012-04-27 03:47:03 +00:00
|
|
|
if (log.trace())
|
|
|
|
log.trace({msg: msg ? msg.json : null}, 'response received');
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
if (expect === 'abandon')
|
|
|
|
return _done('end', null);
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
if (msg instanceof SearchEntry || msg instanceof SearchReference) {
|
|
|
|
var event = msg.constructor.name;
|
|
|
|
event = event[0].toLowerCase() + event.slice(1);
|
|
|
|
return _done(event, msg);
|
|
|
|
} else {
|
2012-02-18 22:58:40 +00:00
|
|
|
delete conn.ldap.messages[message.messageID];
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
if (msg instanceof LDAPResult) {
|
|
|
|
if (expect.indexOf(msg.status) === -1)
|
|
|
|
return _done('error', errors.getError(msg));
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
return _done('end', msg);
|
|
|
|
} else if (msg instanceof Error) {
|
|
|
|
return _done('error', msg);
|
|
|
|
} else {
|
|
|
|
return _done('error', new errors.ProtocolError(msg.type));
|
2012-02-18 22:58:40 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-27 03:23:43 +00:00
|
|
|
} // end function messageCallback(msg)
|
|
|
|
|
|
|
|
function onRequestTimeout() {
|
|
|
|
self.emit('timeout', message);
|
|
|
|
if (conn.ldap.messages[message.messageID]) {
|
|
|
|
conn.ldap.messages[message.messageID](new LDAPResult({
|
|
|
|
status: 80, // LDAP_OTHER
|
|
|
|
errorMessage: 'request timeout (client interrupt)'
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
} // end function onRequestTimeout()
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
function writeCallback() {
|
|
|
|
if (expect === 'abandon') {
|
|
|
|
return callback(null);
|
|
|
|
} else if (expect === 'unbind') {
|
|
|
|
conn.unbindMessageID = message.id;
|
|
|
|
conn.end();
|
|
|
|
} else if (emitter) {
|
|
|
|
return callback(null, emitter);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} // end writeCallback()
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
// Start actually doing something...
|
|
|
|
message.messageID = conn.ldap.getNextMessageID();
|
|
|
|
conn.ldap.messages[message.messageID] = messageCallback;
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
if (self.timeout) {
|
2012-04-27 03:47:03 +00:00
|
|
|
log.trace('Setting timeout to %d', self.timeout);
|
2012-04-27 03:23:43 +00:00
|
|
|
timer = setTimeout(onRequestTimeout, self.timeout);
|
2012-02-18 22:58:40 +00:00
|
|
|
}
|
|
|
|
|
2012-04-27 03:47:03 +00:00
|
|
|
if (log.trace())
|
|
|
|
log.trace('sending request %j', message.json);
|
2012-02-18 22:58:40 +00:00
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
try {
|
|
|
|
return conn.write(message.toBer(), writeCallback);
|
2012-02-18 22:58:40 +00:00
|
|
|
} catch (e) {
|
|
|
|
if (timer)
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
2012-04-27 03:47:03 +00:00
|
|
|
log.trace({err: e}, 'Error writing message to socket');
|
2012-02-18 22:58:40 +00:00
|
|
|
return callback(e);
|
|
|
|
}
|
|
|
|
};
|