File: ldap-nss.h

package info (click to toggle)
libnss-ldap 122-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 680 kB
  • ctags: 819
  • sloc: ansic: 8,324; perl: 89; makefile: 34
file content (478 lines) | stat: -rw-r--r-- 12,134 bytes parent folder | download
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

/* Copyright (C) 1997 Luke Howard.
   This file is part of the nss_ldap library.
   Contributed by Luke Howard, <lukeh@padl.com>, 1997.

   The nss_ldap 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.

   The nss_ldap 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 the nss_ldap library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.

   $Id: ldap-nss.h,v 2.34 2000/10/20 23:07:45 lukeh Exp $
 */

#ifndef _LDAP_NSS_LDAP_LDAP_NSS_H
#define _LDAP_NSS_LDAP_LDAP_NSS_H

#include "ldap-schema.h"

#if defined(GNU_NSS) || defined(IRS_NSS)
#include <errno.h>
#include <pthread.h>
#endif /* GNU_NSS */

#ifdef __STDC__
#ifndef __P
#define __P(x)  x
#endif
#else
#ifndef __P
#define __P(x)  ()
#endif
#endif /* __STDC__ */

/*
 * Timeouts for reconnecting code. Similar to rebind
 * logic in Darwin NetInfo. Some may find sleeping
 * unacceptable, in which case you may wish to adjust
 * the constants below.
 */
#define LDAP_NSS_TRIES           5	/* number of sleeping reconnect attempts */
#define LDAP_NSS_SLEEPTIME       4	/* seconds to sleep; doubled until max */
#define LDAP_NSS_MAXSLEEPTIME    64	/* maximum seconds to sleep */
#define LDAP_NSS_MAXCONNTRIES    2	/* reconnect attempts before sleeping */

#ifdef DEBUG
# ifdef DEBUG_SYSLOG
#  ifdef SUN_NSS
#   define debug(fmt, args...) syslog(LOG_DEBUG, "nss_ldap: thread %u - " fmt, thr_self() , ## args);
#  else
#   define debug(fmt, args...) syslog(LOG_DEBUG, "nss_ldap: thread %u - " fmt, pthread_self() , ## args)
#  endif /* SUN_NSS */
# else
#  ifdef AIX_IRS
#   include <stdarg.h>
static void debug(char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	fprintf(stderr, "nss_ldap: ");
	vfprintf(stderr, fmt, ap);
	va_end(ap);
	fprintf(stderr, "\n");
}
#  else
#   define debug(fmt, args...) fprintf(stderr, "nss_ldap: " fmt "\n" , ## args)
#  endif /* AIX_IRS */
# endif /* DEBUG_SYSLOG */
#else
# ifdef AIX_IRS
static void debug(char *fmt, ...) {}
# else
#  define debug(fmt, args...)
# endif /* AIX_IRS */
#endif /* DEBUG */

#ifdef __GNUC__
#define alignof(ptr) __alignof__(ptr)
#define INLINE inline
#elif defined(OSF1)
#include <alignof.h>
#define INLINE
#else
#define INLINE
#endif /* __GNUC__ */

#ifdef DL_NSS
#ifndef GNU_NSS
#define GNU_NSS
#endif
#define __set_errno(e)  do { errno = e; } while (0)
#endif /* DL_NSS */

#if defined(GNU_NSS) || defined(SUN_NSS)
#define HAVE_STRTOK_R
#endif

#ifndef alignof

#define align(ptr, blen)
#define bytesleft(ptr, blen)    (blen)

#else

#define align(ptr, blen)              do { \
					char *qtr = ptr; \
					ptr += alignof(char *) - 1; \
					ptr -= ((ptr - (char *)NULL) % alignof(char *)); \
					blen -= (ptr - qtr); \
				} while (0)

/* worst case */
#define bytesleft(ptr, blen)    (blen - alignof(char *) + 1)

#endif

#ifdef GNU_NSS
#if !defined(DL_NSS)
#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ > 0)
#include <bits/libc-lock.h>
#else
#include <libc-lock.h>
#endif
#endif
#endif

/*
 * linked list of configurations pointing to LDAP servers. The first
 * which has a successful ldap_open() is used. Conceivably the rest
 * could be used after a failed or exhausted search.
 */
struct ldap_config
  {
    /* space delimited list of servers */
    char *ldc_host;
    /* port, expected to be common to all servers */
    int ldc_port;
    /* base DN, eg. dc=gnu,dc=org */
    char *ldc_base;
    /* scope for searches */
    int ldc_scope;
    /* dereference aliases/links */
    int ldc_deref;
    /* bind DN */
    char *ldc_binddn;
    /* bind cred */
    char *ldc_bindpw;
    /* shadow bind DN */
    char *ldc_rootbinddn;
    /* shadow bind cred */
    char *ldc_rootbindpw;
    /* protocol version */
    int ldc_version;
    /* SSL enabled */
    int ldc_ssl_on;
    /* SSL certificate path */
    char *ldc_sslpath;
    /* next configuration. loops back onto itself for last entry */
    struct ldap_config *ldc_next;
  };

typedef struct ldap_config ldap_config_t;

/*
 * convenient wrapper around pointer into global config list, and a
 * connection to an LDAP server.
 */
struct ldap_session
  {
    /* the connection */
    LDAP *ls_conn;
    /* pointer into config table */
    ldap_config_t *ls_config;
  };

typedef struct ldap_session ldap_session_t;

#if !defined(SUN_NSS)
#ifndef UID_NOBODY
#define UID_NOBODY      (-2)
#endif
#ifndef GID_NOBODY
#define GID_NOBODY     (-2)
#endif
#endif

enum ldap_args_types
  {
    LA_TYPE_STRING,
    LA_TYPE_NUMBER,
    LA_TYPE_STRING_AND_STRING,
    LA_TYPE_NUMBER_AND_STRING
  };

typedef enum ldap_args_types ldap_args_types_t;

struct ldap_args
  {
    ldap_args_types_t la_type;
    union
      {
	const char *la_string;
	long la_number;
      }
    la_arg1;
    union
      {
	const char *la_string;
      }
    la_arg2;
  };

typedef struct ldap_args ldap_args_t;

#define LA_INIT(q)				do { \
						q.la_type = LA_TYPE_STRING; \
						q.la_arg1.la_string = NULL; \
						q.la_arg2.la_string = NULL; \
						} while (0)
#define LA_TYPE(q)				(q.la_type)
#define LA_STRING(q)				(q.la_arg1.la_string)
#define LA_NUMBER(q)				(q.la_arg1.la_number)
#define LA_STRING2(q)				(q.la_arg2.la_string)

#include "ldap-parse.h"

/*
 * the state consists of the desired attribute value or an offset into a list of
 * values for the desired attribute. This is necessary to support services.
 *
 * Be aware of the arbitary distinction between state and context. Context is
 * the enumeration state of a lookup subsystem (which may be per-subsystem,
 * or per-subsystem/per-thread, depending on the OS). State is the state
 * of a particular lookup, and is only concerned with resolving and enumerating
 * services. State is represented as instances of ldap_state_t; context as
 * instances of ent_context_t. The latter contains the former.
 */
struct ldap_state
  {
    int ls_type;
    int ls_retry;
#define LS_TYPE_KEY	(0)
#define LS_TYPE_INDEX	(1)
    union
      {
	/* ls_key is the requested attribute value.
	   ls_index is the desired offset into the value list.
	 */
	const char *ls_key;
	int ls_index;
      }
    ls_info;
  };

typedef struct ldap_state ldap_state_t;
/*
 * LS_INIT only used for enumeration contexts
 */
#define LS_INIT(state)	do { state.ls_type = LS_TYPE_INDEX; state.ls_retry = 0; state.ls_info.ls_index = -1; } while (0)

/*
 * thread specific context: result chain, and state data
 */
struct ent_context
  {
    ldap_state_t ec_state;	/* eg. for services */
    int ec_msgid;		/* message ID */
    LDAPMessage *ec_res;	/* result chain */
  };

typedef struct ent_context ent_context_t;

#ifdef SUN_NSS
struct nss_ldap_backend
  {
    nss_backend_op_t *ops;
    int n_ops;
    ent_context_t *state;
  };

typedef struct nss_ldap_backend nss_ldap_backend_t;
#endif

#if defined(IRS_NSS) || defined(DL_NSS)

typedef enum
  {
    NSS_SUCCESS,
    NSS_NOTFOUND,
    NSS_UNAVAIL,
    NSS_TRYAGAIN
  }
NSS_STATUS;

#elif defined(GNU_NSS)

typedef enum nss_status NSS_STATUS;

#define NSS_SUCCESS		NSS_STATUS_SUCCESS
#define NSS_NOTFOUND	NSS_STATUS_NOTFOUND
#define NSS_UNAVAIL		NSS_STATUS_UNAVAIL
#define NSS_TRYAGAIN	NSS_STATUS_TRYAGAIN

/* to let us index a lookup table on NSS_STATUSes */

#define _NSS_LOOKUP_OFFSET      NSS_STATUS_TRYAGAIN

#else
typedef nss_status_t NSS_STATUS;
#endif

#ifndef _NSS_LOOKUP_OFFSET
#define _NSS_LOOKUP_OFFSET      (0)
#endif

#ifdef GNU_NSS
#if defined(DL_NSS)
#define nss_lock()		/* NOOP */
#define nss_unlock()		/* NOOP */
#else
#define nss_lock()		__libc_lock_lock(_nss_ldap_lock)
#define nss_unlock()		__libc_lock_unlock(_nss_ldap_lock)
#endif /* DL_NSS */
#elif defined(IRS_NSS)
#define nss_lock()		pthread_mutex_lock(&_nss_ldap_lock)
#define nss_unlock()		pthread_mutex_unlock(&_nss_ldap_lock)
#else
#define nss_lock()		mutex_lock(&_nss_ldap_lock)
#define nss_unlock()		mutex_unlock(&_nss_ldap_lock)
#endif 

typedef NSS_STATUS (*parser_t) (LDAP *, LDAPMessage *, ldap_state_t *, void *,
				char *, size_t);

#ifdef LDAP_VERSION3_API
/*
 * Netscape's libldap is threadsafe, but we use a lock before it is initialized 
 */

struct ldap_error
  {
    int le_errno;
    char *le_matched;
    char *le_errmsg;
  };

typedef struct ldap_error ldap_error_t;

#define nss_libldap_lock()
#define nss_libldap_unlock()

#else

#define nss_libldap_lock()		nss_lock()
#define nss_libldap_unlock()		nss_unlock()

#endif /* LDAP_VERSION3_API */

#ifdef SUN_NSS
NSS_STATUS _nss_ldap_default_destr (nss_backend_t *, void *);
#endif

/*
 * context management routines.
 * _nss_ldap_default_constr() is called once in the constructor
 * ent_context_init() is called for each getXXent() call
 * ent_context_free() is used to manually free a context
 */
#ifdef SUN_NSS
NSS_STATUS _nss_ldap_default_constr (nss_ldap_backend_t * be);
#endif

ent_context_t *_nss_ldap_ent_context_init (ent_context_t **);
void _nss_ldap_ent_context_zero (ent_context_t *);
void _nss_ldap_ent_context_free (ent_context_t **);

/*
 * these are helper functions for ldap-grp.c only on Solaris
 */
char **_nss_ldap_get_values (LDAPMessage * e, char *attr);
char *_nss_ldap_get_dn (LDAPMessage * e);
LDAPMessage *_nss_ldap_first_entry (LDAPMessage * res);
LDAPMessage *_nss_ldap_next_entry (LDAPMessage * res);

/*
 * Synchronous search cover.
 */
NSS_STATUS _nss_ldap_search_s (const ldap_args_t * args,	/* IN */
			     const char *filterprot,	/* IN */
			     const char **attributes,	/* IN */
			     int sizelimit,	/* IN */
			     LDAPMessage ** pRes /* OUT */ );

/*
 * Asynchronous search cover.
 */
NSS_STATUS _nss_ldap_search (const ldap_args_t * args,	/* IN */
			     const char *filterprot,	/* IN */
			     const char **attributes,	/* IN */
			     int sizelimit,	/* IN */
			     int * pMsgid /* OUT */ );

/*
 * Retrieve next result.
 */
NSS_STATUS _nss_ldap_result (ent_context_t *ctx);

/*
 * Emulate X.500 read operation.
 */ 
NSS_STATUS _nss_ldap_read (const char *dn,	/* IN */
			   const char **attributes,	/* IN */
			   LDAPMessage ** pRes /* OUT */ );

/*
 * common enumeration routine; uses asynchronous API.
 */
NSS_STATUS _nss_ldap_getent (ent_context_t ** key,	/* IN/OUT */
			     void *result,	/* IN/OUT */
			     char *buffer,	/* IN */
			     size_t buflen,	/* IN */
			     int *errnop,	/* OUT */
			     const char *filterprot,	/* IN */
			     const char **attrs,	/* IN */
			     parser_t parser /* IN */ );

/*
 * common lookup routine; uses synchronous API.
 */
NSS_STATUS _nss_ldap_getbyname (ldap_args_t * args,	/* IN/OUT */
				void *result,	/* IN/OUT */
				char *buffer,	/* IN */
				size_t buflen,	/* IN */
				int *errnop,	/* OUT */
				const char *filterprot,		/* IN */
				const char **attrs,	/* IN */
				parser_t parser /* IN */ );

/* parsing utility functions */
NSS_STATUS _nss_ldap_assign_attrvals (LDAP * ld,	/* IN */
				      LDAPMessage * e,	/* IN */
				      const char *attr,		/* IN */
				      const char *omitvalue,	/* IN */
				      char ***valptr,	/* OUT */
				      char **buffer,	/* IN/OUT */
				      size_t * buflen,	/* IN/OUT */
				      size_t * pvalcount /* OUT */ );

NSS_STATUS _nss_ldap_assign_attrval (LDAP * ld,		/* IN */
				     LDAPMessage * e,	/* IN */
				     const char *attr,	/* IN */
				     char **valptr,	/* OUT */
				     char **buffer,	/* IN/OUT */
				     size_t * buflen /* IN/OUT */ );


NSS_STATUS _nss_ldap_assign_passwd (LDAP * ld,	/* IN */
				    LDAPMessage * e,	/* IN */
				    const char *attr,	/* IN */
				    char **valptr,	/* OUT */
				    char **buffer,	/* IN/OUT */
				    size_t * buflen);	/* IN/OUT */

NSS_STATUS _nss_ldap_oc_check (LDAP *ld,
				LDAPMessage * e,
				const char * oc);

#endif /* _LDAP_NSS_LDAP_LDAP_NSS_H */