/usr/include/KF5/KLDAP/kldap/ldapoperation.h is in libkf5ldap-dev 15.12.3-0ubuntu1.
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 | /*
This file is part of libkldap.
Copyright (c) 2004-2006 Szombathelyi György <gyurco@freemail.hu>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KLDAP_LDAPOPERATION_H
#define KLDAP_LDAPOPERATION_H
#include "kldap_export.h"
#include "ldapconnection.h"
#include "ldapcontrol.h"
#include "ldapobject.h"
#include "ldapdn.h"
#include "ldapserver.h"
#include "ldapurl.h"
#include <QtCore/QByteArray>
#include <QtCore/QList>
#include <QtCore/QString>
namespace KLDAP
{
/**
* @brief
* This class allows sending an ldap operation
* (search, rename, modify, delete, compare, exop) to an LDAP server.
*/
class KLDAP_EXPORT LdapOperation
{
public:
typedef enum {
Mod_None, Mod_Add, Mod_Replace, Mod_Del
} ModType;
typedef enum {
RES_BIND = 0x61,
RES_SEARCH_ENTRY = 0x64,
RES_SEARCH_REFERENCE = 0x73,
RES_SEARCH_RESULT = 0x65,
RES_MODIFY = 0x67,
RES_ADD = 0x69,
RES_DELETE = 0x69,
RES_MODDN = 0x6d,
RES_COMPARE = 0x6f,
RES_EXTENDED = 0x78,
RES_EXTENDED_PARTIAL = 0x79
} ResultType;
typedef struct {
ModType type;
QString attr;
QList<QByteArray> values;
} ModOp ;
typedef QVector<ModOp> ModOps;
enum SASL_Fields {
SASL_Authname = 0x1,
SASL_Authzid = 0x2,
SASL_Realm = 0x4,
SASL_Password = 0x8
};
struct SASL_Credentials {
int fields;
QString authname;
QString authzid;
QString realm;
QString password;
};
typedef int (SASL_Callback_Proc)(SASL_Credentials &cred, void *data);
struct SASL_Data {
SASL_Callback_Proc *proc;
void *data;
SASL_Credentials creds;
};
LdapOperation();
LdapOperation(LdapConnection &conn);
virtual ~LdapOperation();
/**
* Sets the connection object. Without living connection object,
* LDAP operations are not possible.
* @param the connection object to set
*/
void setConnection(LdapConnection &conn);
/**
* Returns the connection object.
*/
LdapConnection &connection();
/**
* Sets the client controls which will sent with each operation.
*/
void setClientControls(const LdapControls &ctrls);
/**
* Sets the server controls which will sent with each operation.
*/
void setServerControls(const LdapControls &ctrls);
/**
* Returns the client controls (which set by setClientControls()).
*/
LdapControls clientControls() const;
/**
* Returns the server controls (which set by setServerControls()).
*/
LdapControls serverControls() const;
/**
* Binds to the server which specified in the connection object.
* Can do simple or SASL bind. Returns a message id if successful, negative value if not.
*/
int bind(const QByteArray &creds = QByteArray(),
SASL_Callback_Proc *saslproc = Q_NULLPTR, void *data = Q_NULLPTR);
/**
* Binds to the server which specified in the connection object.
* Can do simple or SASL bind. This is the synchronous version.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
*/
int bind_s(SASL_Callback_Proc *saslproc = Q_NULLPTR, void *data = Q_NULLPTR);
/**
* Starts a search operation with the given base DN, scope, filter and
* result attributes. Returns a message id if successful, -1 if not.
*/
int search(const LdapDN &base, LdapUrl::Scope scope,
const QString &filter, const QStringList &attrs);
/**
* Starts an addition operation.
* Returns a message id if successful, -1 if not.
* @param object the additional operation to start
*/
int add(const LdapObject &object);
/**
* Adds the specified object to the LDAP database.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
* @param object the object to add to LDAP database
*/
int add_s(const LdapObject &object);
/**
* Starts an addition operation. This version accepts ModOps not LdapObject.
* Returns a message id if successful, -1 if not.
* @param dn the LdapDN operation to start
* @param ops the ModOps operation to start
*/
int add(const LdapDN &dn, const ModOps &ops);
/**
* Adds the specified object to the LDAP database. This version accepts ModOps not LdapObject.
* This is the synchronous version.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
* @param dn the LdapDN object to add
* @param ops the ModOps object to add
*/
int add_s(const LdapDN &dn, const ModOps &ops);
/**
* Starts a modrdn operation on given DN, changing its RDN to newRdn,
* changing its parent to newSuperior (if it's not empty), and deletes
* the old dn if deleteold is true.
* Returns a message id if successful, -1 if not.
*/
int rename(const LdapDN &dn, const QString &newRdn,
const QString &newSuperior, bool deleteold = true);
/**
* Performs a modrdn operation on given DN, changing its RDN to newRdn,
* changing its parent to newSuperior (if it's not empty), and deletes
* the old dn if deleteold is true. This is the synchronous version.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
*/
int rename_s(const LdapDN &dn, const QString &newRdn,
const QString &newSuperior, bool deleteold = true);
/**
* Starts a delete operation on the given DN.
* Returns a message id if successful, -1 if not.
*/
int del(const LdapDN &dn);
/**
* Deletes the given DN. This is the synchronous version.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
* @param dn the dn to delete
*/
int del_s(const LdapDN &dn);
/**
* Starts a modify operation on the given DN.
* Returns a message id if successful, -1 if not.
* @param dn the DN to start modify operation on
*/
int modify(const LdapDN &dn, const ModOps &ops);
/**
* Performs a modify operation on the given DN.
* This is the synchronous version.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
*/
int modify_s(const LdapDN &dn, const ModOps &ops);
/**
* Starts a compare operation on the given DN, compares the specified
* attribute with the given value.
* Returns a message id if successful, -1 if not.
*/
int compare(const LdapDN &dn, const QString &attr, const QByteArray &value);
/**
* Performs a compare operation on the given DN, compares the specified
* attribute with the given value. This is the synchronous version.
* Returns KLDAP_COMPARE_TRUE if the entry contains the attribute value
* and KLDAP_COMPARE_FALSE if it does not. Otherwise, some error code
* is returned.
*/
int compare_s(const LdapDN &dn, const QString &attr, const QByteArray &value);
/**
* Starts an extended operation specified with oid and data.
* Returns a message id if successful, -1 if not.
*/
int exop(const QString &oid, const QByteArray &data);
/**
* Performs an extended operation specified with oid and data.
* This is the synchronous version.
* Returns KLDAP_SUCCESS id if successful, else an LDAP error code.
*/
int exop_s(const QString &oid, const QByteArray &data);
/**
* Abandons a long-running operation. Requires the message id.
*/
int abandon(int id);
/**
* Waits for up to \p msecs milliseconds for a result message from the LDAP
* server. If \p msecs is -1, then this function will block indefinitely.
* If \p msecs is 0, then this function will return immediately, that is it
* will perform a poll for a result message.
*
* Returns the type of the result LDAP message (RES_XXX constants).
* -1 if error occurred, 0 if the timeout value elapsed. Note!
* Return code -1 means that fetching the message resulted in error,
* not the LDAP operation error. Call connection().ldapErrorCode() to
* determine if the operation succeeded.
*/
int waitForResult(int id, int msecs = -1);
/**
* Returns the result object if result() returned RES_SEARCH_ENTRY.
*/
LdapObject object() const;
/**
* Returns the server controls from the returned ldap message (grabbed
* by result()).
*/
LdapControls controls() const;
/**
* Returns the OID of the extended operation response (result
* returned RES_EXTENDED).
*/
QByteArray extendedOid() const;
/**
* Returns the data from the extended operation response (result
* returned RES_EXTENDED).
*/
QByteArray extendedData() const;
/**
* The server might supply a matched DN string in the message indicating
* how much of a name in a request was recognized. This can be grabbed by
* matchedDn().
*/
QString matchedDn() const;
/**
* This function returns the referral strings from the parsed message
* (if any).
*/
QList<QByteArray> referrals() const;
/**
* Returns the server response for a bind request (result
* returned RES_BIND).
*/
QByteArray serverCred() const;
private:
class LdapOperationPrivate;
LdapOperationPrivate *const d;
Q_DISABLE_COPY(LdapOperation)
};
}
#endif
|