2001-12-22 22:24:13 +08:00
|
|
|
/* operational.c - routines to deal with on-the-fly operational attrs */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2019-01-15 02:46:16 +08:00
|
|
|
* Copyright 2001-2019 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08: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 22:24:13 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* helpers for on-the-fly operational attribute generation
|
|
|
|
*/
|
|
|
|
|
|
|
|
Attribute *
|
2002-08-10 11:10:52 +08:00
|
|
|
slap_operational_subschemaSubentry( Backend *be )
|
2001-12-22 22:24:13 +08:00
|
|
|
{
|
|
|
|
Attribute *a;
|
|
|
|
|
2002-08-10 11:10:52 +08:00
|
|
|
/* The backend wants to take care of it */
|
2005-07-08 01:39:29 +08:00
|
|
|
if ( be && !SLAP_FRONTEND(be) && be->be_schemadn.bv_val ) return NULL;
|
2002-08-10 11:10:52 +08:00
|
|
|
|
2006-08-29 09:43:23 +08:00
|
|
|
a = attr_alloc( slap_schema.si_ad_subschemaSubentry );
|
2001-12-22 22:24:13 +08:00
|
|
|
|
2007-09-21 16:43:56 +08:00
|
|
|
a->a_numvals = 1;
|
2002-01-02 19:00:36 +08:00
|
|
|
a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
|
2004-07-27 05:26:34 +08:00
|
|
|
ber_dupbv( a->a_vals, &frontendDB->be_schemadn );
|
2003-02-26 06:49:41 +08:00
|
|
|
a->a_vals[1].bv_len = 0;
|
2002-01-02 19:00:36 +08:00
|
|
|
a->a_vals[1].bv_val = NULL;
|
2001-12-22 22:24:13 +08:00
|
|
|
|
2003-03-17 02:10:16 +08:00
|
|
|
a->a_nvals = ch_malloc( 2 * sizeof( struct berval ) );
|
2004-07-27 05:26:34 +08:00
|
|
|
ber_dupbv( a->a_nvals, &frontendDB->be_schemandn );
|
2003-03-17 02:10:16 +08:00
|
|
|
a->a_nvals[1].bv_len = 0;
|
|
|
|
a->a_nvals[1].bv_val = NULL;
|
2003-02-26 06:49:41 +08:00
|
|
|
|
2001-12-22 22:24:13 +08:00
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2004-09-07 13:00:33 +08:00
|
|
|
Attribute *
|
|
|
|
slap_operational_entryDN( Entry *e )
|
|
|
|
{
|
|
|
|
Attribute *a;
|
|
|
|
|
2005-07-18 14:22:33 +08:00
|
|
|
assert( e != NULL );
|
2005-04-30 04:28:35 +08:00
|
|
|
assert( !BER_BVISNULL( &e->e_name ) );
|
|
|
|
assert( !BER_BVISNULL( &e->e_nname ) );
|
|
|
|
|
2006-08-29 09:43:23 +08:00
|
|
|
a = attr_alloc( slap_schema.si_ad_entryDN );
|
2004-09-07 13:00:33 +08:00
|
|
|
|
2007-09-21 16:43:56 +08:00
|
|
|
a->a_numvals = 1;
|
2004-09-07 13:00:33 +08:00
|
|
|
a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
|
2005-04-30 04:28:35 +08:00
|
|
|
ber_dupbv( &a->a_vals[ 0 ], &e->e_name );
|
|
|
|
BER_BVZERO( &a->a_vals[ 1 ] );
|
2004-09-07 13:00:33 +08:00
|
|
|
|
|
|
|
a->a_nvals = ch_malloc( 2 * sizeof( struct berval ) );
|
2005-04-30 04:28:35 +08:00
|
|
|
ber_dupbv( &a->a_nvals[ 0 ], &e->e_nname );
|
|
|
|
BER_BVZERO( &a->a_nvals[ 1 ] );
|
2004-09-07 13:00:33 +08:00
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2001-12-22 22:24:13 +08:00
|
|
|
Attribute *
|
|
|
|
slap_operational_hasSubordinate( int hs )
|
|
|
|
{
|
|
|
|
Attribute *a;
|
2003-04-17 03:49:00 +08:00
|
|
|
struct berval val;
|
2002-08-29 18:49:41 +08:00
|
|
|
|
2004-09-07 13:00:33 +08:00
|
|
|
val = hs ? slap_true_bv : slap_false_bv;
|
2002-08-29 18:49:41 +08:00
|
|
|
|
2006-08-29 09:43:23 +08:00
|
|
|
a = attr_alloc( slap_schema.si_ad_hasSubordinates );
|
2007-09-21 16:43:56 +08:00
|
|
|
a->a_numvals = 1;
|
2002-01-02 19:00:36 +08:00
|
|
|
a->a_vals = ch_malloc( 2 * sizeof( struct berval ) );
|
2002-08-29 18:49:41 +08:00
|
|
|
|
2003-04-17 03:49:00 +08:00
|
|
|
ber_dupbv( &a->a_vals[0], &val );
|
2002-01-02 19:00:36 +08:00
|
|
|
a->a_vals[1].bv_val = NULL;
|
2001-12-22 22:24:13 +08:00
|
|
|
|
2003-03-24 09:56:56 +08:00
|
|
|
a->a_nvals = a->a_vals;
|
2003-02-26 06:49:41 +08:00
|
|
|
|
2001-12-22 22:24:13 +08:00
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|