/*
* 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 "ns_internal.h"
#include "ldap_common.h"
/* rpc attributes filters */
static const char *rpc_attrs[] = {
(char *)NULL
};
/*
* _nss_ldap_rpc2str is the data marshaling method for the rpc getXbyY
* (e.g., getbyname(), getbynumber(), getrpcent()) 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.
*
* nfs_acl 100227
* snmp 100122 na.snmp snmp-cmc snmp-synoptics snmp-unisys snmp-utk
*/
static int
{
uint_t i;
int nss_result;
char **rpcnumber;
return (NSS_STR_PARSE_PARSE);
goto result_rpc2str;
}
} else
goto result_rpc2str;
}
/* Get the canonical rpc name */
goto result_rpc2str;
}
goto result_rpc2str;
}
/* Append aliases */
for (i = 0; i < names->value_count; i++) {
goto result_rpc2str;
}
/* Skip the canonical name */
}
}
/* The front end marshaller doesn't need to copy trailing nulls */
return (nss_result);
}
/*
* getbyname gets struct rpcent values by rpc name. This function
* constructs an ldap search filter using the rpc name invocation
* parameter and the getrpcbyname search filter defined. Once the
* filter is constructed, we search for a matching entry and marshal
* the data results into *rpc = (struct rpcent *)argp->buf.result.
* The function _nss_ldap_rpc2ent performs the data marshaling.
*/
static nss_status_t
{
int ret;
return ((nss_status_t)NSS_NOTFOUND);
name);
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
}
/*
* getbynumber gets struct rpcent values by rpc number. This function
* constructs an ldap search filter using the rpc number invocation
* parameter and the getrpcbynumber search filter defined. Once the
* filter is constructed, we search for a matching entry and marshal
* the data results into *rpc = (struct rpcent *)argp->buf.result.
* The function _nss_ldap_rpc2ent performs the data marshaling.
*/
static nss_status_t
{
int ret;
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
}
};
/*
* _nss_ldap_rpc_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)
{
}