/*
* 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 <netdb.h>
#include "ns_internal.h"
#include "ldap_common.h"
/* networks attributes filters */
"(ipNetworkNumber=%s)))"
"(ipNetworkNumber=%s)))"
static const char *networks_attrs[] = {
(char *)NULL
};
/*
* _nss_ldap_networks2str is the data marshaling method for the networks
* getXbyY * (e.g., getbyname(), getbyaddr(), getnetent() 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.
*
* SunRay-ce2 10.34.96.0 SunRay
*
*/
static int
{
uint_t i;
int nss_result;
return (NSS_STR_PARSE_PARSE);
goto result_net2str;
}
} else
goto result_net2str;
}
/* Get the canonical name */
/*
* The definition of the object class "ipNetwork" has a
* discrepency between RFC 2307 and 2307bis.
* In 2307, "cn" is a MUST attribute. In 2307bis, "cn" is a
* MAY attribute.
* If "cn" is a MAY attribute, it does not appear in RDN and can't
* be derived from RDN as a canonical "cn" name. In that case, use 1st
* "cn" value as the official name.
*/
/* 2307bis case */
goto result_net2str;
}
goto result_net2str;
}
/* Append aliases */
for (i = 0; i < names->value_count; i++) {
goto result_net2str;
}
/* Skip the canonical name */
}
}
/* The front end marshaller doesn't need to copy trailing nulls */
return (nss_result);
}
/*
* Takes an unsigned integer in host order, and returns a printable
* string for it as a network number. To allow for the possibility of
* naming subnets, only trailing dot-zeros are truncated.
* buf2 is untruncated version.
*/
{
int addr;
char *p;
return ((int)1);
== NULL)
return ((int)1);
return ((int)1);
if (p == NULL)
return ((int)1);
*p = 0;
if (p == NULL)
return ((int)1);
if (p == NULL)
return ((int)1);
*p = 0;
if (p == NULL)
return ((int)1);
*p = 0;
}
return ((int)0);
}
/*
* getbyname gets a network entry by name. This function constructs an
* ldap search filter using the network name invocation parameter and the
* getnetbyname search filter defined. Once the filter is constructed, we
* search for a matching entry and marshal the data results into struct
* netent for the frontend process. The function _nss_ldap_networks2ent
* 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);
}
/*
* getbyaddr gets a network entry by ip address. This function constructs an
* ldap search filter using the name invocation parameter and the getnetbyaddr
* search filter defined. Once the filter is constructed, we search for a
* matching entry and marshal the data results into struct netent for the
* frontend process. The function _nss_ldap_networks2ent performs the data
* marshaling.
*/
static nss_status_t
{
int ret;
INET_ADDRSTRLEN) != 0)
return ((nss_status_t)NSS_UNAVAIL);
return ((nss_status_t)NSS_NOTFOUND);
return ((nss_status_t)NSS_NOTFOUND);
}
};
/*
* _nss_ldap_networks_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)
{
}