/usr/include/ptclib/pldap.h is in libpt-dev 2.10.10~dfsg-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 | /*
* pldap.h
*
* Lightweight Directory Access Protocol interface class.
*
* Portable Windows Library
*
* Copyright (c) 1993-2003 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Revision: 27535 $
* $Author: rjongbloed $
* $Date: 2012-04-26 02:48:22 -0500 (Thu, 26 Apr 2012) $
*/
#ifndef PTLIB_PLDAP_H
#define PTLIB_PLDAP_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#if defined(P_LDAP) && !defined(_WIN32_WCE)
#include <ptlib/sockets.h>
#include <ptlib/pluginmgr.h>
#include <map>
#include <list>
struct ldap;
struct ldapmsg;
struct ldapmod;
struct berval;
class PLDAPStructBase;
/**This class will create an LDAP client to access a remote LDAP server.
*/
class PLDAPSession : public PObject
{
PCLASSINFO(PLDAPSession, PObject);
public:
/**Create a LDAP client.
*/
PLDAPSession(
const PString & defaultBaseDN = PString::Empty()
);
/**Close the sesison on destruction
*/
~PLDAPSession();
/**Open the LDAP session to the specified server.
The server name string is of the form hostip[:port] where hostip is a
host name or IP address and the :port is an optional port number. If
not present then the port variable is used. If that is also zero then
the default port of 369 is used.
*/
PBoolean Open(
const PString & server,
WORD port = 0
);
/**Close the LDAP session
*/
PBoolean Close();
/**Determine of session is open.
*/
PBoolean IsOpen() const { return ldapContext != NULL; }
/**Set LDAP option parameter (OpenLDAp specific values)
*/
PBoolean SetOption(
int optcode,
int value
);
/**Set LDAP option parameter (OpenLDAP specific values)
*/
PBoolean SetOption(
int optcode,
void * value
);
enum AuthenticationMethod {
AuthSimple,
AuthSASL,
AuthKerberos,
#ifdef SOLARIS
NumAuthenticationMethod1,
NumAuthenticationMethod2
#else
NumAuthenticationMethod
#endif
};
/**Start encrypted connection
*/
PBoolean StartTLS();
/**Bind to the remote LDAP server.
*/
PBoolean Bind(
const PString & who = PString::Empty(),
const PString & passwd = PString::Empty(),
AuthenticationMethod authMethod = AuthSimple
);
class ModAttrib : public PObject {
PCLASSINFO(ModAttrib, PObject);
public:
enum Operation {
Add,
Replace,
Delete,
NumOperations
};
protected:
ModAttrib(
const PString & name,
Operation op = NumOperations
);
public:
const PString & GetName() const { return name; }
Operation GetOperation() const { return op; }
void SetLDAPMod(
struct ldapmod & mod,
Operation defaultOp
);
protected:
virtual PBoolean IsBinary() const = 0;
virtual void SetLDAPModVars(struct ldapmod & mod) = 0;
PString name;
Operation op;
};
class StringModAttrib : public ModAttrib {
PCLASSINFO(StringModAttrib, ModAttrib);
public:
StringModAttrib(
const PString & name,
Operation op = NumOperations
);
StringModAttrib(
const PString & name,
const PString & value,
Operation op = NumOperations
);
StringModAttrib(
const PString & name,
const PStringList & values,
Operation op = NumOperations
);
void SetValue(
const PString & value
);
void AddValue(
const PString & value
);
protected:
virtual PBoolean IsBinary() const;
virtual void SetLDAPModVars(struct ldapmod & mod);
PStringArray values;
PBaseArray<char *> pointers;
};
class BinaryModAttrib : public ModAttrib {
PCLASSINFO(BinaryModAttrib, ModAttrib);
public:
BinaryModAttrib(
const PString & name,
Operation op = Add
);
BinaryModAttrib(
const PString & name,
const PBYTEArray & value,
Operation op = Add
);
BinaryModAttrib(
const PString & name,
const PArray<PBYTEArray> & values,
Operation op = Add
);
void SetValue(
const PBYTEArray & value
);
void AddValue(
const PBYTEArray & value
);
protected:
virtual PBoolean IsBinary() const;
virtual void SetLDAPModVars(struct ldapmod & mod);
PArray<PBYTEArray> values;
PBaseArray<struct berval *> pointers;
PBYTEArray bervals;
};
/**Add a new distringuished name to LDAP dirctory.
*/
PBoolean Add(
const PString & dn,
const PArray<ModAttrib> & attributes
);
/**Add a new distringuished name to LDAP dirctory.
*/
PBoolean Add(
const PString & dn,
const PStringToString & attributes
);
/**Add a new distringuished name to LDAP dirctory.
The attributes list is a string array of the form attr=value
*/
PBoolean Add(
const PString & dn,
const PStringArray & attributes
);
/**Add a new distringuished name to LDAP dirctory.
The attributes list is a string array of the form attr=value
*/
PBoolean Add(
const PString & dn,
const PLDAPStructBase & data
);
/**Modify an existing distringuished name to LDAP dirctory.
*/
PBoolean Modify(
const PString & dn,
const PArray<ModAttrib> & attributes
);
/**Add a new distringuished name to LDAP dirctory.
*/
PBoolean Modify(
const PString & dn,
const PStringToString & attributes
);
/**Add a new distringuished name to LDAP dirctory.
The attributes list is a string array of the form attr=value
*/
PBoolean Modify(
const PString & dn,
const PStringArray & attributes
);
/**Add a new distringuished name to LDAP dirctory.
The attributes list is a string array of the form attr=value
*/
PBoolean Modify(
const PString & dn,
const PLDAPStructBase & data
);
/**Delete the distinguished name from LDAP directory.
*/
PBoolean Delete(
const PString & dn
);
enum SearchScope {
ScopeBaseOnly,
ScopeSingleLevel,
ScopeSubTree,
NumSearchScope
};
class SearchContext {
public:
SearchContext();
~SearchContext();
PBoolean IsCompleted() const { return completed; }
private:
int msgid;
struct ldapmsg * result;
struct ldapmsg * message;
PBoolean found;
PBoolean completed;
friend class PLDAPSession;
};
/**Start search for specified information.
*/
PBoolean Search(
SearchContext & context,
const PString & filter,
const PStringArray & attributes = PStringList(),
const PString & base = PString::Empty(),
SearchScope scope = ScopeSubTree
);
/**Get the current search result entry.
*/
PBoolean GetSearchResult(
SearchContext & context,
PStringToString & data
);
/**Get an attribute of the current search result entry.
*/
PBoolean GetSearchResult(
SearchContext & context,
const PString & attribute,
PString & data
);
/**Get an attribute of the current search result entry.
*/
PBoolean GetSearchResult(
SearchContext & context,
const PString & attribute,
PStringArray & data
);
/**Get an attribute of the current search result entry.
*/
PBoolean GetSearchResult(
SearchContext & context,
const PString & attribute,
PArray<PBYTEArray> & data
);
/**Get all attributes of the current search result entry.
*/
PBoolean GetSearchResult(
SearchContext & context,
PLDAPStructBase & data
);
/**Get the current search result distinguished name entry.
*/
PString GetSearchResultDN(
SearchContext & context
);
/**Get the next search result.
*/
PBoolean GetNextSearchResult(
SearchContext & context
);
/**Search for specified information, returning all matches.
This can be used for simple LDAP databases where all attributes are
represented by a string.
*/
PList<PStringToString> Search(
const PString & filter,
const PStringArray & attributes = PStringList(),
const PString & base = PString::Empty(),
SearchScope scope = ScopeSubTree
);
/**Set the default base DN for use if not specified for searches.
*/
void SetBaseDN(
const PString & dn
) { defaultBaseDN = dn; }
/**Set the default base DN for use if not specified for searches.
*/
const PString & GetBaseDN() const { return defaultBaseDN; }
/**Get the last OpenLDAP error code.
*/
int GetErrorNumber() const { return errorNumber; }
/**Get the last OpenLDAP error as text string.
*/
PString GetErrorText() const;
/**Get the OpenLDAP context structure.
*/
struct ldap * GetOpenLDAP() const { return ldapContext; }
/**Get the timeout for LDAP operations.
*/
const PTimeInterval & GetTimeout() const { return timeout; }
/**Set the timeout for LDAP operations.
*/
void SetTimeout(
const PTimeInterval & t
) { timeout = t; }
/**Set a limit on the number of results to return
*/
void SetSearchLimit(
const unsigned s
) { searchLimit = s; }
protected:
struct ldap * ldapContext;
int errorNumber;
unsigned protocolVersion;
PString defaultBaseDN;
unsigned searchLimit;
PTimeInterval timeout;
PString multipleValueSeparator;
};
class PLDAPStructBase;
class PLDAPAttributeBase : public PObject
{
PCLASSINFO(PLDAPAttributeBase, PObject);
public:
PLDAPAttributeBase(const char * name, void * pointer, PINDEX size);
const char * GetName() const { return name; }
PBoolean IsBinary() const { return pointer != NULL; }
virtual void Copy(const PLDAPAttributeBase & other) = 0;
virtual PString ToString() const;
virtual void FromString(const PString & str);
virtual PBYTEArray ToBinary() const;
virtual void FromBinary(const PArray<PBYTEArray> & data);
protected:
const char * name;
void * pointer;
PINDEX size;
};
class PLDAPStructBase : public PObject {
PCLASSINFO(PLDAPStructBase, PObject);
protected:
PLDAPStructBase();
PLDAPStructBase & operator=(const PLDAPStructBase &);
PLDAPStructBase & operator=(const PStringArray & array);
PLDAPStructBase & operator=(const PStringToString & dict);
private:
PLDAPStructBase(const PLDAPStructBase & obj) : PObject(obj) { }
public:
void PrintOn(ostream & strm) const;
PINDEX GetNumAttributes() const { return attributes.GetSize(); }
PLDAPAttributeBase & GetAttribute(PINDEX idx) const { return attributes.GetDataAt(idx); }
PLDAPAttributeBase * GetAttribute(const char * name) const { return attributes.GetAt(name); }
void AddAttribute(PLDAPAttributeBase * var);
static PLDAPStructBase & GetInitialiser() { return *PAssertNULL(initialiserInstance); }
protected:
void EndConstructor();
PDictionary<PString, PLDAPAttributeBase> attributes;
PLDAPStructBase * initialiserStack;
static PMutex initialiserMutex;
static PLDAPStructBase * initialiserInstance;
};
///////////////////////////////////////////////////////////////////////////
class PLDAPSchema : public PObject
{
public:
PLDAPSchema();
enum AttributeType {
AttibuteUnknown = -1,
AttributeString,
AttributeBinary,
AttributeNumeric
};
class Attribute
{
public:
Attribute() : m_type(AttibuteUnknown) { }
Attribute(const PString & name, AttributeType type);
PString m_name;
AttributeType m_type;
};
typedef std::list<Attribute> attributeList;
static PLDAPSchema * CreateSchema(const PString & schemaname, PPluginManager * pluginMgr = NULL);
static PStringList GetSchemaNames(PPluginManager * pluginMgr = NULL);
static PStringList GetSchemaFriendlyNames(const PString & schema, PPluginManager * pluginMgr = NULL);
void OnReceivedAttribute(const PString & attribute, const PString & value);
void OnSendSchema(PArray<PLDAPSession::ModAttrib> & attributes,
PLDAPSession::ModAttrib::Operation op=PLDAPSession::ModAttrib::Add);
void LoadSchema();
PStringList SchemaName() { return PStringList(); }
virtual void AttributeList(attributeList & /*attrib*/) {};
PStringList GetAttributeList();
PBoolean Exists(const PString & attribute);
PBoolean SetAttribute(const PString & attribute, const PString & value);
PBoolean SetAttribute(const PString & attribute, const PBYTEArray & value);
PBoolean GetAttribute(const PString & attribute, PString & value);
PBoolean GetAttribute(const PString & attribute, PBYTEArray & value);
AttributeType GetAttributeType(const PString & attribute);
protected:
typedef std::map<PString,PString> ldapAttributes;
typedef std::map<PString,PBYTEArray> ldapBinAttributes;
attributeList attributelist;
ldapAttributes attributes;
ldapBinAttributes binattributes;
};
template <class className> class LDAPPluginServiceDescriptor : public PDevicePluginServiceDescriptor
{
public:
virtual PObject * CreateInstance(int /*userData*/) const { return new className; }
virtual PStringArray GetDeviceNames(int /*userData*/) const { return className::SchemaName(); }
};
#define LDAP_Schema(name) \
static LDAPPluginServiceDescriptor<name##_schema> name##_schema_descriptor; \
PCREATE_PLUGIN(name##_schema, PLDAPSchema, &name##_schema_descriptor)
////////////////////////////////////////////////////////////////////////////////////////////
#define PLDAP_STRUCT_BEGIN(name) \
class name : public PLDAPStructBase { \
public: name() : PLDAPStructBase() { EndConstructor(); } \
public: name(const name & other) : PLDAPStructBase() { EndConstructor(); operator=(other); } \
public: name(const PStringArray & array) : PLDAPStructBase() { EndConstructor(); operator=(array); } \
public: name(const PStringToString & dict) : PLDAPStructBase() { EndConstructor(); operator=(dict); } \
public: name & operator=(const name & other) { PLDAPStructBase::operator=(other); return *this; } \
public: name & operator=(const PStringArray & array) { PLDAPStructBase::operator=(array); return *this; } \
public: name & operator=(const PStringToString & dict) { PLDAPStructBase::operator=(dict); return *this; } \
PLDAP_ATTR_INIT(name, PString, objectClass, #name);
#define PLDAP_ATTRIBUTE(base, type, attribute, pointer, init) \
public: type attribute; \
private: struct PLDAPAttr_##attribute : public PLDAPAttributeBase { \
PLDAPAttr_##attribute() \
: PLDAPAttributeBase(#attribute, pointer, sizeof(type)), \
instance(((base &)base::GetInitialiser()).attribute) \
{ init } \
virtual void PrintOn (ostream & s) const { s << instance; } \
virtual void ReadFrom(istream & s) { s >> instance; } \
virtual void Copy(const PLDAPAttributeBase & other) \
{ instance = ((PLDAPAttr_##attribute &)other).instance; } \
type & instance; \
} pldapvar_##attribute
#define PLDAP_ATTR_SIMP(base, type, attribute) \
PLDAP_ATTRIBUTE(base, type, attribute, NULL, ;)
#define PLDAP_ATTR_INIT(base, type, attribute, init) \
PLDAP_ATTRIBUTE(base, type, attribute, NULL, instance = init;)
#define PLDAP_BINATTRIB(base, type, attribute) \
PLDAP_ATTRIBUTE(base, type, attribute, &((base &)base::GetInitialiser()).attribute, ;)
#define PLDAP_STRUCT_END() \
};
#endif // P_LDAP
#endif // PTLIB_PLDAP_H
// End of file ////////////////////////////////////////////////////////////////
|