/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
#include <pwd.h>
#include "ldap_common.h"
/* passwd attributes filters */
static const char *pwd_attrs[] = {
(char *)NULL
};
/* Use this attribute to ask for server type from libsldap. */
static const char *pwd_extra_info_attr[] = {
"__ns_ldap_op_attr_server_type",
(char *)NULL
};
/*
* dn2uid_cache_state is set in getgrent.c when group dn2uid cache is created.
*/
/*
* _nss_ldap_passwd2str is the data marshaling method for the passwd getXbyY
* (e.g., getbyuid(), getbyname(), getpwent()) backend processes. This method is
* called after a successful ldap search has been performed. This method will
* parse the ldap search values into the file format.
* e.g.
*
* nobody:x:60001:60001:Nobody:/:
*
*/
static int
{
int nss_result;
int buflen = 0;
unsigned long str_len = 0L;
char **dn_v;
int dnlen = 0;
char *server_type;
uid_nobody_v[0] = uid_nobody;
gid_nobody_v[0] = gid_nobody;
}
return (NSS_STR_PARSE_PARSE);
}
/* 8 = 6 ':' + 1 '\0' + 1 'x' */
str_len = 8;
goto result_pwd2str;
}
/* Validate UID and GID */
goto result_pwd2str;
}
else
else
else
goto result_pwd2str;
}
nss_result = (int)NSS_STR_PARSE_ERANGE;
goto result_pwd2str;
}
"%s:%s:%s:%s:%s:%s:%s",
} else {
int plen;
/*
* Save the entry DN as an optional data, if
* dn to uid caching is being performed and
* not processing enumeration results and
* there's enough room in the buffer.
* Format is (passwd data followed by the optional data):
* <passwd data> + '\0' + '#dn:' + <server_type>' + ':' +
* <DN> + '\0'
*/
if (dn2uid_cache_state == NSS_LDAP_CACHE_INITED &&
&server_type);
dnlen = 0;
}
if (dnlen == 0) {
"%s:%s:%s:%s:%s:%s:%s",
} else {
"%s:%s:%s:%s:%s:%s:%s%c%s%s:%s",
}
nss_result = (int)NSS_STR_PARSE_ERANGE;
}
}
return ((int)nss_result);
}
/*
* getbyname gets a passwd entry by uid name. This function constructs an ldap
* search filter using the name invocation parameter and the getpwnam search
* filter defined. Once the filter is constructed, we search for a matching
* entry and marshal the data results into struct passwd for the frontend
* process. The function _nss_ldap_passwd2ent performs the data marshaling.
*/
static nss_status_t
{
int ret;
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
}
/*
* getbyuid gets a passwd entry by uid number. This function constructs an ldap
* search filter using the uid invocation parameter and the getpwuid search
* filter defined. Once the filter is constructed, we search for a matching
* entry and marshal the data results into struct passwd for the frontend
* process. The function _nss_ldap_passwd2ent performs the data marshaling.
*/
static nss_status_t
{
int ret;
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
}
};
/*
* _nss_ldap_passwd_constr is where life begins. This function calls the
* generic ldap constructor function to define and build the abstract
* data types required to support ldap operations.
*/
/*ARGSUSED0*/
const char *dummy3)
{
sizeof (passwd_ops)/sizeof (passwd_ops[0]),
}