2001-12-22 09:24:13 -05:00
|
|
|
/* operational.c - routines to deal with on-the-fly operational attrs */
|
2003-11-26 20:17:14 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2010-04-13 18:17:29 -04:00
|
|
|
* Copyright 2001-2010 The OpenLDAP Foundation.
|
2003-11-26 20:17:14 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2001-12-22 09:24:13 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* helpers for on-the-fly operational attribute generation
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
Attribute *
|
2002-08-09 23:10:52 -04:00
|
|
|
slap_operational_subschemaSubentry( Backend *be )
|
2001-12-22 09:24:13 -05:00
|
|
|
{
|
|
|
|
|
Attribute *a;
|
|
|
|
|
|
2002-08-09 23:10:52 -04:00
|
|
|
/* The backend wants to take care of it */
|
2005-07-07 13:39:29 -04:00
|
|
|
if ( be && !SLAP_FRONTEND(be) && be->be_schemadn.bv_val ) return NULL;
|
2002-08-09 23:10:52 -04:00
|
|
|
|
2006-08-28 21:43:23 -04:00
|
|
|
a = attr_alloc( slap_schema.si_ad_subschemaSubentry );
|
2001-12-22 09:24:13 -05:00
|
|
|
|
2007-09-21 04:43:56 -04:00
|
|
|
a->a_numvals = 1;
|
2002-01-02 06:00:36 -05:00
|
|
|
a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
|
2004-07-26 17:26:34 -04:00
|
|
|
ber_dupbv( a->a_vals, &frontendDB->be_schemadn );
|
2003-02-25 17:49:41 -05:00
|
|
|
a->a_vals[1].bv_len = 0;
|
2002-01-02 06:00:36 -05:00
|
|
|
a->a_vals[1].bv_val = NULL;
|
2001-12-22 09:24:13 -05:00
|
|
|
|
2003-03-16 13:10:16 -05:00
|
|
|
a->a_nvals = ch_malloc( 2 * sizeof( struct berval ) );
|
2004-07-26 17:26:34 -04:00
|
|
|
ber_dupbv( a->a_nvals, &frontendDB->be_schemandn );
|
2003-03-16 13:10:16 -05:00
|
|
|
a->a_nvals[1].bv_len = 0;
|
|
|
|
|
a->a_nvals[1].bv_val = NULL;
|
2003-02-25 17:49:41 -05:00
|
|
|
|
2001-12-22 09:24:13 -05:00
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-07 01:00:33 -04:00
|
|
|
Attribute *
|
|
|
|
|
slap_operational_entryDN( Entry *e )
|
|
|
|
|
{
|
|
|
|
|
Attribute *a;
|
|
|
|
|
|
2005-07-18 02:22:33 -04:00
|
|
|
assert( e != NULL );
|
2005-04-29 16:28:35 -04:00
|
|
|
assert( !BER_BVISNULL( &e->e_name ) );
|
|
|
|
|
assert( !BER_BVISNULL( &e->e_nname ) );
|
|
|
|
|
|
2006-08-28 21:43:23 -04:00
|
|
|
a = attr_alloc( slap_schema.si_ad_entryDN );
|
2004-09-07 01:00:33 -04:00
|
|
|
|
2007-09-21 04:43:56 -04:00
|
|
|
a->a_numvals = 1;
|
2004-09-07 01:00:33 -04:00
|
|
|
a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
|
2005-04-29 16:28:35 -04:00
|
|
|
ber_dupbv( &a->a_vals[ 0 ], &e->e_name );
|
|
|
|
|
BER_BVZERO( &a->a_vals[ 1 ] );
|
2004-09-07 01:00:33 -04:00
|
|
|
|
|
|
|
|
a->a_nvals = ch_malloc( 2 * sizeof( struct berval ) );
|
2005-04-29 16:28:35 -04:00
|
|
|
ber_dupbv( &a->a_nvals[ 0 ], &e->e_nname );
|
|
|
|
|
BER_BVZERO( &a->a_nvals[ 1 ] );
|
2004-09-07 01:00:33 -04:00
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-22 09:24:13 -05:00
|
|
|
Attribute *
|
|
|
|
|
slap_operational_hasSubordinate( int hs )
|
|
|
|
|
{
|
|
|
|
|
Attribute *a;
|
2003-04-16 15:49:00 -04:00
|
|
|
struct berval val;
|
2002-08-29 06:49:41 -04:00
|
|
|
|
2004-09-07 01:00:33 -04:00
|
|
|
val = hs ? slap_true_bv : slap_false_bv;
|
2002-08-29 06:49:41 -04:00
|
|
|
|
2006-08-28 21:43:23 -04:00
|
|
|
a = attr_alloc( slap_schema.si_ad_hasSubordinates );
|
2007-09-21 04:43:56 -04:00
|
|
|
a->a_numvals = 1;
|
2002-01-02 06:00:36 -05:00
|
|
|
a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
|
2002-08-29 06:49:41 -04:00
|
|
|
|
2003-04-16 15:49:00 -04:00
|
|
|
ber_dupbv( &a->a_vals[0], &val );
|
2002-01-02 06:00:36 -05:00
|
|
|
a->a_vals[1].bv_val = NULL;
|
2001-12-22 09:24:13 -05:00
|
|
|
|
2003-03-23 20:56:56 -05:00
|
|
|
a->a_nvals = a->a_vals;
|
2003-02-25 17:49:41 -05:00
|
|
|
|
2001-12-22 09:24:13 -05:00
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|