/*
* 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
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "ldap_common.h"
/* bootparams attributes filters */
static const char *bootparams_attrs[] = {
(char *)NULL
};
/*
* _nss_ldap_bootparams2str is the data marshaling method for the
* bootparams bootparams_getbyname 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.
*
* A host's bootparameters are returned on one line separated by white
* space. The LDAP server stores each boot parameter as a separate entry.
* If more than one bootparameter is available, a white space separated buffer
* must be constructed and returned.
*
*/
static int
{
uint_t i;
return (NSS_STR_PARSE_PARSE);
goto result_bp2str;
}
} else
goto result_bp2str;
}
goto result_bp2str;
}
firsttime = 1;
for (i = 0; i < bparams->value_count; i++) {
goto result_bp2str;
}
/*
* Skip client host name. The early version of ldapaddent
* adds hostname as a boot param and it should be filtered.
*/
if (firsttime) {
firsttime = 0;
} else
}
}
/* The front end marshaller doesn't need to copy trailing nulls */
return (nss_result);
}
/*
* getbyname gets bootparameters by host name. This function constructs an
* ldap search filter using the host name invocation parameter and the
* getbootparambyname search filter defined. Once the filter is
* constructed, we search for matching entries and marshal the data
* results into argp->buf.buffer for the frontend process. The function
* _nss_ldap_bootparams2ent performs the data marshaling.
*
* RFC 2307, An Approach for Using LDAP as a Network Information Service,
* indicates that dn's be fully qualified. Host name searches will be on
* fully qualified host names (e.g., foo.bar.sun.com).
*/
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_bootparams_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 (bootparams_ops)/sizeof (bootparams_ops[0]),
}