openldap/servers/slapd/back-passwd/search.c

351 lines
8.6 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* search.c - /etc/passwd backend search function */
/* $OpenLDAP$ */
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1998-10-25 09:41:42 +08:00
#include <ac/ctype.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/time.h>
1998-08-09 08:43:13 +08:00
#include <pwd.h>
1998-10-25 09:41:42 +08:00
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "back-passwd.h"
#include <ldap_pvt.h>
1998-08-09 08:43:13 +08:00
2002-05-15 13:44:46 +08:00
static void pw_start( Backend *be );
static Entry *pw2entry(
Backend *be,
2002-01-01 17:49:23 +08:00
struct passwd *pw,
const char **text);
1998-08-09 08:43:13 +08:00
int
passwd_back_search(
Operation *op,
SlapReply *rs )
1998-08-09 08:43:13 +08:00
{
struct passwd *pw;
Entry *e;
char *s;
time_t stoptime;
2003-04-11 09:29:28 +08:00
LDAPRDN rdn = NULL;
struct berval parent = { 0, NULL };
1998-08-09 08:43:13 +08:00
AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass;
op->oq_search.rs_tlimit = (op->oq_search.rs_tlimit > op->o_bd->be_timelimit || op->oq_search.rs_tlimit < 1) ? op->o_bd->be_timelimit
: op->oq_search.rs_tlimit;
stoptime = op->o_time + op->oq_search.rs_tlimit;
op->oq_search.rs_slimit = (op->oq_search.rs_slimit > op->o_bd->be_sizelimit || op->oq_search.rs_slimit < 1) ? op->o_bd->be_sizelimit
: op->oq_search.rs_slimit;
1998-08-09 08:43:13 +08:00
/* Handle a query for the base of this backend */
if ( be_issuffix( op->o_bd, &op->o_req_ndn ) ) {
2002-01-02 21:09:28 +08:00
struct berval vals[2];
2002-01-02 21:09:28 +08:00
vals[1].bv_val = NULL;
1998-08-09 08:43:13 +08:00
rs->sr_matched = op->o_req_dn.bv_val;
if( op->oq_search.rs_scope != LDAP_SCOPE_ONELEVEL ) {
AttributeDescription *desc = NULL;
/* Create an entry corresponding to the base DN */
e = (Entry *) ch_calloc(1, sizeof(Entry));
e->e_name.bv_val = ch_strdup( op->o_req_dn.bv_val );
e->e_name.bv_len = op->o_req_dn.bv_len;
e->e_nname.bv_val = ch_strdup( op->o_req_ndn.bv_val );
e->e_nname.bv_len = op->o_req_ndn.bv_len;
e->e_attrs = NULL;
2001-12-27 06:59:28 +08:00
e->e_private = NULL;
/* Use the first attribute of the DN
* as an attribute within the entry itself.
*/
if( ldap_bv2rdn( &op->o_req_dn, &rdn, (char **)&rs->sr_text,
2002-01-10 02:18:36 +08:00
LDAP_DN_FORMAT_LDAP ) )
{
rs->sr_err = LDAP_INVALID_DN_SYNTAX;
goto done;
}
2003-04-11 09:29:28 +08:00
if( slap_bv2ad( &rdn[0]->la_attr, &desc, &rs->sr_text )) {
rs->sr_err = LDAP_NO_SUCH_OBJECT;
2002-01-01 17:41:10 +08:00
ldap_rdnfree(rdn);
goto done;
}
2003-04-11 09:29:28 +08:00
vals[0] = rdn[0]->la_value;
2003-02-27 06:58:46 +08:00
attr_mergeit( e, desc, vals );
2002-01-01 17:41:10 +08:00
ldap_rdnfree(rdn);
rdn = NULL;
/* Every entry needs an objectclass. We don't really
* know if our hardcoded choice here agrees with the
* DN that was configured for this backend, but it's
* better than nothing.
*
* should be a configuratable item
*/
2002-01-02 21:09:28 +08:00
vals[0].bv_val = "organizationalUnit";
vals[0].bv_len = sizeof("organizationalUnit")-1;
2003-02-27 06:58:46 +08:00
attr_mergeit( e, ad_objectClass, vals );
if ( test_filter( op, e, op->oq_search.rs_filter ) == LDAP_COMPARE_TRUE ) {
rs->sr_entry = e;
rs->sr_attrs = op->oq_search.rs_attrs;
send_search_entry( op, rs );
}
1998-08-09 08:43:13 +08:00
}
if ( op->oq_search.rs_scope != LDAP_SCOPE_BASE ) {
/* check all our "children" */
1998-08-09 08:43:13 +08:00
ldap_pvt_thread_mutex_lock( &passwd_mutex );
pw_start( op->o_bd );
for ( pw = getpwent(); pw != NULL; pw = getpwent() ) {
/* check for abandon */
if ( op->o_abandon ) {
endpwent();
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
return( -1 );
}
/* check time limit */
if ( slap_get_time() > stoptime ) {
send_ldap_error( op, rs, LDAP_TIMELIMIT_EXCEEDED, NULL );
endpwent();
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
return( 0 );
}
if ( !(e = pw2entry( op->o_bd, pw, &rs->sr_text )) ) {
rs->sr_err = LDAP_OTHER;
2002-01-01 17:49:23 +08:00
endpwent();
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
2002-01-01 17:49:23 +08:00
goto done;
}
1998-08-09 08:43:13 +08:00
if ( test_filter( op, e, op->oq_search.rs_filter ) == LDAP_COMPARE_TRUE ) {
/* check size limit */
if ( --op->oq_search.rs_slimit == -1 ) {
send_ldap_error( op, rs, LDAP_SIZELIMIT_EXCEEDED, NULL );
endpwent();
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
return( 0 );
}
rs->sr_entry = e;
rs->sr_attrs = op->oq_search.rs_attrs;
send_search_entry( op, rs );
}
entry_free( e );
}
1998-08-09 08:43:13 +08:00
endpwent();
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
1998-08-09 08:43:13 +08:00
}
} else {
if (! be_issuffix( op->o_bd, &op->o_req_ndn ) ) {
dnParent( &op->o_req_ndn, &parent );
}
/* This backend is only one layer deep. Don't answer requests for
* anything deeper than that.
*/
if( !be_issuffix( op->o_bd, &parent ) ) {
int i;
for( i=0; op->o_bd->be_nsuffix[i].bv_val != NULL; i++ ) {
if( dnIsSuffix( &op->o_req_ndn, &op->o_bd->be_nsuffix[i] ) ) {
rs->sr_matched = op->o_bd->be_suffix[i].bv_val;
break;
}
}
rs->sr_err = LDAP_NO_SUCH_OBJECT;
goto done;
}
if( op->oq_search.rs_scope == LDAP_SCOPE_ONELEVEL ) {
goto done;
1998-08-09 08:43:13 +08:00
}
if ( ldap_bv2rdn( &op->o_req_dn, &rdn, (char **)&rs->sr_text,
2002-01-10 02:18:36 +08:00
LDAP_DN_FORMAT_LDAP ))
{
rs->sr_err = LDAP_OTHER;
goto done;
}
ldap_pvt_thread_mutex_lock( &passwd_mutex );
pw_start( op->o_bd );
2003-04-11 09:29:28 +08:00
if ( (pw = getpwnam( rdn[0]->la_value.bv_val )) == NULL ) {
rs->sr_matched = parent.bv_val;
rs->sr_err = LDAP_NO_SUCH_OBJECT;
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
goto done;
}
e = pw2entry( op->o_bd, pw, &rs->sr_text );
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
if ( !e ) {
rs->sr_err = LDAP_OTHER;
2002-01-01 17:49:23 +08:00
goto done;
}
if ( test_filter( op, e, op->oq_search.rs_filter ) == LDAP_COMPARE_TRUE ) {
rs->sr_entry = e;
rs->sr_attrs = op->oq_search.rs_attrs;
send_search_entry( op, rs );
1998-08-09 08:43:13 +08:00
}
entry_free( e );
}
done:
if( rs->sr_err != LDAP_NO_SUCH_OBJECT ) rs->sr_matched = NULL;
send_ldap_result( op, rs );
2002-01-01 17:41:10 +08:00
if( rdn != NULL ) ldap_rdnfree( rdn );
1998-08-09 08:43:13 +08:00
return( 0 );
}
static void
pw_start(
Backend *be
)
{
endpwent();
#ifdef HAVE_SETPWFILE
if ( be->be_private != NULL ) {
(void) setpwfile( (char *) be->be_private );
}
#endif /* HAVE_SETPWFILE */
}
1998-08-09 08:43:13 +08:00
static Entry *
2002-01-01 17:49:23 +08:00
pw2entry( Backend *be, struct passwd *pw, const char **text )
1998-08-09 08:43:13 +08:00
{
2001-12-28 15:09:12 +08:00
size_t pwlen;
1998-08-09 08:43:13 +08:00
Entry *e;
2002-01-02 21:09:28 +08:00
struct berval vals[2];
struct berval bv;
1998-08-09 08:43:13 +08:00
int rc;
2001-12-28 15:09:12 +08:00
AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass;
AttributeDescription *ad_cn = NULL;
AttributeDescription *ad_sn = NULL;
AttributeDescription *ad_uid = NULL;
AttributeDescription *ad_description = NULL;
2002-01-01 17:49:23 +08:00
rc = slap_str2ad( "cn", &ad_cn, text );
if(rc != LDAP_SUCCESS) return NULL;
2002-01-01 17:49:23 +08:00
rc = slap_str2ad( "sn", &ad_sn, text );
if(rc != LDAP_SUCCESS) return NULL;
2002-01-01 17:49:23 +08:00
rc = slap_str2ad( "uid", &ad_uid, text );
if(rc != LDAP_SUCCESS) return NULL;
2002-01-01 17:49:23 +08:00
rc = slap_str2ad( "description", &ad_description, text );
if(rc != LDAP_SUCCESS) return NULL;
1998-08-09 08:43:13 +08:00
/*
* from pw we get pw_name and make it cn
* give it an objectclass of person.
1998-08-09 08:43:13 +08:00
*/
2001-12-28 15:09:12 +08:00
pwlen = strlen( pw->pw_name );
vals[0].bv_len = (sizeof("uid=,")-1) + ( pwlen + be->be_suffix[0].bv_len );
2002-01-02 21:09:28 +08:00
vals[0].bv_val = ch_malloc( vals[0].bv_len + 1 );
2001-12-28 15:09:12 +08:00
/* rdn attribute type should be a configuratable item */
2002-01-02 21:09:28 +08:00
sprintf( vals[0].bv_val, "uid=%s,%s",
pw->pw_name, be->be_suffix[0].bv_val );
2001-12-28 15:09:12 +08:00
2002-01-02 21:09:28 +08:00
rc = dnNormalize2( NULL, vals, &bv );
2001-12-28 15:09:12 +08:00
if( rc != LDAP_SUCCESS ) {
2002-01-02 21:09:28 +08:00
free( vals[0].bv_val );
2001-12-28 15:09:12 +08:00
return NULL;
}
1998-08-09 08:43:13 +08:00
e = (Entry *) ch_calloc( 1, sizeof(Entry) );
2002-01-02 21:09:28 +08:00
e->e_name = vals[0];
e->e_nname = bv;
2001-12-28 15:09:12 +08:00
1998-08-09 08:43:13 +08:00
e->e_attrs = NULL;
2002-01-02 21:09:28 +08:00
vals[1].bv_val = NULL;
2001-12-28 15:09:12 +08:00
/* objectclasses should be configurable items */
2002-01-02 21:09:28 +08:00
vals[0].bv_val = "top";
vals[0].bv_len = sizeof("top")-1;
2003-02-27 06:58:46 +08:00
attr_mergeit( e, ad_objectClass, vals );
2002-01-02 21:09:28 +08:00
vals[0].bv_val = "person";
vals[0].bv_len = sizeof("person")-1;
2003-02-27 06:58:46 +08:00
attr_mergeit( e, ad_objectClass, vals );
2002-01-02 21:09:28 +08:00
vals[0].bv_val = "uidObject";
vals[0].bv_len = sizeof("uidObject")-1;
2003-02-27 06:58:46 +08:00
attr_mergeit( e, ad_objectClass, vals );
2002-01-02 21:09:28 +08:00
vals[0].bv_val = pw->pw_name;
vals[0].bv_len = pwlen;
2003-02-27 06:58:46 +08:00
attr_mergeit( e, ad_uid, vals ); /* required by uidObject */
attr_mergeit( e, ad_cn, vals ); /* required by person */
attr_mergeit( e, ad_sn, vals ); /* required by person */
1999-03-18 06:27:46 +08:00
#ifdef HAVE_PW_GECOS
/*
* if gecos is present, add it as a cn. first process it
* according to standard BSD usage. If the processed cn has
* a space, use the tail as the surname.
*/
if (pw->pw_gecos[0]) {
char *s;
2002-01-02 21:09:28 +08:00
vals[0].bv_val = pw->pw_gecos;
vals[0].bv_len = strlen(vals[0].bv_val);
2003-02-27 06:58:46 +08:00
attr_mergeit(e, ad_description, vals);
2002-01-02 21:09:28 +08:00
s = strchr(vals[0].bv_val, ',');
if (s) *s = '\0';
2002-01-02 21:09:28 +08:00
s = strchr(vals[0].bv_val, '&');
if (s) {
2002-08-27 04:10:45 +08:00
char buf[1024];
if( vals[0].bv_len + pwlen < sizeof(buf) ) {
int i = s - vals[0].bv_val;
strncpy(buf, vals[0].bv_val, i);
s = buf+i;
strcpy(s, pw->pw_name);
*s = TOUPPER((unsigned char)*s);
strcat(s, vals[0].bv_val+i+1);
vals[0].bv_val = buf;
}
}
2002-01-02 21:09:28 +08:00
vals[0].bv_len = strlen(vals[0].bv_val);
2002-08-27 04:10:45 +08:00
if ( vals[0].bv_len && strcasecmp( vals[0].bv_val, pw->pw_name )) {
2003-02-27 06:58:46 +08:00
attr_mergeit( e, ad_cn, vals );
2002-08-27 04:10:45 +08:00
}
2002-01-02 21:09:28 +08:00
if ( (s=strrchr(vals[0].bv_val, ' '))) {
vals[0].bv_val = s + 1;
vals[0].bv_len = strlen(vals[0].bv_val);
2003-02-27 06:58:46 +08:00
attr_mergeit(e, ad_sn, vals);
}
}
1999-03-18 06:27:46 +08:00
#endif
1998-08-09 08:43:13 +08:00
return( e );
}