17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5cb5caa98Sdjl * Common Development and Distribution License (the "License"). 6cb5caa98Sdjl * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*ba3594baSGarrett D'Amore * Copyright 2014 Garrett D'Amore <garrett@damore.org> 23*ba3594baSGarrett D'Amore * 24cb5caa98Sdjl * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 25cb5caa98Sdjl * Use is subject to license terms. 267c478bd9Sstevel@tonic-gate */ 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate /* 297c478bd9Sstevel@tonic-gate * 307c478bd9Sstevel@tonic-gate * NOTE: The interfaces documented in this file may change in a minor 317c478bd9Sstevel@tonic-gate * release. It is intended that in the future a stronger committment 327c478bd9Sstevel@tonic-gate * will be made to these interface definitions which will guarantee 337c478bd9Sstevel@tonic-gate * them across minor releases. 347c478bd9Sstevel@tonic-gate */ 357c478bd9Sstevel@tonic-gate 367c478bd9Sstevel@tonic-gate #ifndef _NSS_COMMON_H 377c478bd9Sstevel@tonic-gate #define _NSS_COMMON_H 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate #include <synch.h> 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate #ifdef __cplusplus 427c478bd9Sstevel@tonic-gate extern "C" { 437c478bd9Sstevel@tonic-gate #endif 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gate /* 467c478bd9Sstevel@tonic-gate * The name-service switch 477c478bd9Sstevel@tonic-gate * ----------------------- 487c478bd9Sstevel@tonic-gate * 497c478bd9Sstevel@tonic-gate * From nsswitch.conf(4): 507c478bd9Sstevel@tonic-gate * 51cb5caa98Sdjl * The operating system uses a number of "databases" of information 527c478bd9Sstevel@tonic-gate * about hosts, users (passwd/shadow), groups and so forth. Data for 53cb5caa98Sdjl * these can come from a variety of "sources": host-names and 547c478bd9Sstevel@tonic-gate * -addresses, for example, may be found in /etc/hosts, NIS, NIS+ or 557c478bd9Sstevel@tonic-gate * DNS. One or more sources may be used for each database; the 567c478bd9Sstevel@tonic-gate * sources and their lookup order are specified in the 577c478bd9Sstevel@tonic-gate * /etc/nsswitch.conf file. 587c478bd9Sstevel@tonic-gate * 597c478bd9Sstevel@tonic-gate * The implementation of this consists of: 607c478bd9Sstevel@tonic-gate * 61cb5caa98Sdjl * - a "frontend" for each database, which provides a programming 627c478bd9Sstevel@tonic-gate * interface for that database [for example, the "passwd" frontend 637c478bd9Sstevel@tonic-gate * consists of getpwnam_r(), getpwuid_r(), getpwent_r(), setpwent(), 647c478bd9Sstevel@tonic-gate * endpwent(), and the old MT-unsafe routines getpwnam() and getpwuid()] 657c478bd9Sstevel@tonic-gate * and is implemented by calls to... 667c478bd9Sstevel@tonic-gate * 67cb5caa98Sdjl * - the common core of the switch (called the "switch" or "policy" engine); 68cb5caa98Sdjl * that determines what sources to use and when to invoke them. This 69cb5caa98Sdjl * component works in conjunction with the name service switch (nscd). 70cb5caa98Sdjl * Usually nscd is the policy engine for an application lookup. 717c478bd9Sstevel@tonic-gate * 72cb5caa98Sdjl * - Old style backend interfaces follow this pointer to function interface: 73cb5caa98Sdjl * 74cb5caa98Sdjl * A "backend" exists for useful <database, source> pairs. Each backend 757c478bd9Sstevel@tonic-gate * consists of whatever private data it needs and a set of functions 767c478bd9Sstevel@tonic-gate * that the switch engine may invoke on behalf of the frontend 777c478bd9Sstevel@tonic-gate * [e.g. the "nis" backend for "passwd" provides routines to lookup 787c478bd9Sstevel@tonic-gate * by name and by uid, as well as set/get/end iterator routines]. 797c478bd9Sstevel@tonic-gate * The set of functions, and their expected arguments and results, 807c478bd9Sstevel@tonic-gate * constitutes a (database-specific) interface between a frontend and 817c478bd9Sstevel@tonic-gate * all its backends. The switch engine knows as little as possible 827c478bd9Sstevel@tonic-gate * about these interfaces. 837c478bd9Sstevel@tonic-gate * 84cb5caa98Sdjl * (The term "backend" is used ambiguously; it may also refer to a 857c478bd9Sstevel@tonic-gate * particular instantiation of a backend, or to the set of all backends 867c478bd9Sstevel@tonic-gate * for a particular source, e.g. "the nis backend"). 877c478bd9Sstevel@tonic-gate * 887c478bd9Sstevel@tonic-gate * This header file defines the interface between the switch engine and the 897c478bd9Sstevel@tonic-gate * frontends and backends. Interfaces between specific frontends and 907c478bd9Sstevel@tonic-gate * backends are defined elsewhere; many are in <nss_dbdefs.h>. 91cb5caa98Sdjl * Most of these definitions are in the form of pointer to function 92cb5caa98Sdjl * indicies used to call specific backend APIs. 937c478bd9Sstevel@tonic-gate * 947c478bd9Sstevel@tonic-gate * 957c478bd9Sstevel@tonic-gate * Switch-engine outline 967c478bd9Sstevel@tonic-gate * --------------------- 977c478bd9Sstevel@tonic-gate * 987c478bd9Sstevel@tonic-gate * Frontends may call the following routines in the switch engine: 997c478bd9Sstevel@tonic-gate * 1007c478bd9Sstevel@tonic-gate * nss_search() does getXXXbyYYY, e.g. getpwnam_r(), getpwuid_r() 1017c478bd9Sstevel@tonic-gate * nss_getent() does getXXXent, e.g. getpwent_r() 1027c478bd9Sstevel@tonic-gate * nss_setent() does setXXXent, e.g. setpwent() 1037c478bd9Sstevel@tonic-gate * nss_endent() does endXXXent, e.g. endpwent() 1047c478bd9Sstevel@tonic-gate * nss_delete() releases resources, in the style of endpwent(). 1057c478bd9Sstevel@tonic-gate * 1067c478bd9Sstevel@tonic-gate * A getpwnam_r() call might proceed thus (with many details omitted): 1077c478bd9Sstevel@tonic-gate * 1087c478bd9Sstevel@tonic-gate * (1) getpwnam_r fills in (getpwnam-specific) argument/result struct, 1097c478bd9Sstevel@tonic-gate * calls nss_search(), 110cb5caa98Sdjl * (2) nss_search queries the name service cache for an existing 111cb5caa98Sdjl * result via a call to _nsc_search(). if the cache 112cb5caa98Sdjl * (nscd) has a definitive answer skip to step 7 113cb5caa98Sdjl * (3) nss_search looks up configuration info, gets "passwd: files nis", 114cb5caa98Sdjl * (4) nss_search decides to try first source ("files"), 1157c478bd9Sstevel@tonic-gate * (a) nss_search locates code for <"passwd", "files"> backend, 1167c478bd9Sstevel@tonic-gate * (b) nss_search creates instance of backend, 1177c478bd9Sstevel@tonic-gate * (c) nss_search calls get-by-name routine in backend, 118cb5caa98Sdjl * through a function pointer interface, 1197c478bd9Sstevel@tonic-gate * (d) backend searches /etc/passwd, doesn't find the name, 1207c478bd9Sstevel@tonic-gate * returns "not found" status to nss_search, 121cb5caa98Sdjl * (5) nss_search examines status and config info, decides to try 1227c478bd9Sstevel@tonic-gate * next source ("nis"), 1237c478bd9Sstevel@tonic-gate * (a) nss_search locates code for <"passwd", "nis"> backend, 1247c478bd9Sstevel@tonic-gate * (b) nss_search creates instance of backend, 1257c478bd9Sstevel@tonic-gate * (c) nss_search calls get-by-name routine in backend, 126cb5caa98Sdjl * through a function pointer interface, 1277c478bd9Sstevel@tonic-gate * (d) backend searches passwd.byname, finds the desired entry, 1287c478bd9Sstevel@tonic-gate * fills in the result part of the getpwnam-specific 1297c478bd9Sstevel@tonic-gate * struct, returns "success" status to nss_search, 130cb5caa98Sdjl * (6) nss_search examines status and config info, decides to return 1317c478bd9Sstevel@tonic-gate * to caller, 132cb5caa98Sdjl * (7) getpwnam_r extracts result from getpwnam-specific struct, 1337c478bd9Sstevel@tonic-gate * returns to caller. 1347c478bd9Sstevel@tonic-gate * 1357c478bd9Sstevel@tonic-gate * 1367c478bd9Sstevel@tonic-gate * Data structures 1377c478bd9Sstevel@tonic-gate * --------------- 1387c478bd9Sstevel@tonic-gate * 1397c478bd9Sstevel@tonic-gate * Both databases and sources are represented by case-sensitive strings 1407c478bd9Sstevel@tonic-gate * (the same strings that appear in the configuration file). 1417c478bd9Sstevel@tonic-gate * 1427c478bd9Sstevel@tonic-gate * The switch engine maintains a per-frontend data structure so that the 1437c478bd9Sstevel@tonic-gate * results of steps (2), (a) and (b) can be cached. The frontend holds a 1447c478bd9Sstevel@tonic-gate * handle (nss_db_root_t) to this structure and passes it in to the 1457c478bd9Sstevel@tonic-gate * nss_*() routines. 1467c478bd9Sstevel@tonic-gate * 1477c478bd9Sstevel@tonic-gate * The nss_setent(), nss_getent() and nss_endent() routines introduce another 1487c478bd9Sstevel@tonic-gate * variety of state (the current position in the enumeration process). 1497c478bd9Sstevel@tonic-gate * Within a single source, this information is maintained by private data 1507c478bd9Sstevel@tonic-gate * in the backend instance -- but, in the presence of multiple sources, the 1517c478bd9Sstevel@tonic-gate * switch engine must keep track of the current backend instance [e.g either 1527c478bd9Sstevel@tonic-gate * <"passwd", "files"> or <"passwd", "nis"> instances]. The switch engine 1537c478bd9Sstevel@tonic-gate * has a separate per-enumeration data structure for this; again, the 1547c478bd9Sstevel@tonic-gate * frontend holds a handle (nss_getent_t) and passes it in, along with the 1557c478bd9Sstevel@tonic-gate * nss_db_root_t handle, to nss_setent(), nss_getent() and nss_endent(). 1567c478bd9Sstevel@tonic-gate * 1577c478bd9Sstevel@tonic-gate * 1587c478bd9Sstevel@tonic-gate * Multithreading 1597c478bd9Sstevel@tonic-gate * -------------- 1607c478bd9Sstevel@tonic-gate * 1617c478bd9Sstevel@tonic-gate * The switch engine takes care of locking; frontends should be written to 1627c478bd9Sstevel@tonic-gate * be reentrant, and a backend instance may assume that all calls to it are 1637c478bd9Sstevel@tonic-gate * serialized. 1647c478bd9Sstevel@tonic-gate * 1657c478bd9Sstevel@tonic-gate * If multiple threads simultaneously want to use a particular backend, the 1667c478bd9Sstevel@tonic-gate * switch engine creates multiple backend instances (up to some limit 1677c478bd9Sstevel@tonic-gate * specified by the frontend). Backends must of course lock any state that 1687c478bd9Sstevel@tonic-gate * is shared between instances, and must serialize calls to any MT-unsafe 1697c478bd9Sstevel@tonic-gate * code. 1707c478bd9Sstevel@tonic-gate * 1717c478bd9Sstevel@tonic-gate * The switch engine has no notion of per-thread state. 1727c478bd9Sstevel@tonic-gate * 1737c478bd9Sstevel@tonic-gate * Frontends can use the nss_getent_t handle to define the scope of the 1747c478bd9Sstevel@tonic-gate * enumeration (set/get/endXXXent) state: a static handle gives global state 1757c478bd9Sstevel@tonic-gate * (which is what Posix has specified for the getXXXent_r routines), handles 1767c478bd9Sstevel@tonic-gate * in Thread-Specific Data give per-thread state, and handles on the stack 1777c478bd9Sstevel@tonic-gate * give per-invocation state. 1787c478bd9Sstevel@tonic-gate */ 1797c478bd9Sstevel@tonic-gate 1807c478bd9Sstevel@tonic-gate /* 1817c478bd9Sstevel@tonic-gate * Backend instances 1827c478bd9Sstevel@tonic-gate * ----------------- 1837c478bd9Sstevel@tonic-gate * 1847c478bd9Sstevel@tonic-gate * As far as the switch engine is concerned, an instance of a backend is a 1857c478bd9Sstevel@tonic-gate * struct whose first two members are: 1867c478bd9Sstevel@tonic-gate * - A pointer to a vector of function pointers, one for each 1877c478bd9Sstevel@tonic-gate * database-specific function, 1887c478bd9Sstevel@tonic-gate * - The length of the vector (an int), used for bounds-checking. 1897c478bd9Sstevel@tonic-gate * There are four well-known function slots in the vector: 1907c478bd9Sstevel@tonic-gate * [0] is a destructor for the backend instance, 1917c478bd9Sstevel@tonic-gate * [1] is the endXXXent routine, 1927c478bd9Sstevel@tonic-gate * [2] is the setXXXent routine, 1937c478bd9Sstevel@tonic-gate * [3] is the getXXXent routine. 1947c478bd9Sstevel@tonic-gate * Any other slots are database-specific getXXXbyYYY routines; the frontend 1957c478bd9Sstevel@tonic-gate * specifies a slot-number to nss_search(). 1967c478bd9Sstevel@tonic-gate * 1977c478bd9Sstevel@tonic-gate * The functions take two arguments: 1987c478bd9Sstevel@tonic-gate * - a pointer to the backend instance (like a C++ "this" pointer) 1997c478bd9Sstevel@tonic-gate * - a single (void *) pointer to the database-specific argument/result 2007c478bd9Sstevel@tonic-gate * structure (the contents are opaque to the switch engine). 2017c478bd9Sstevel@tonic-gate * The four well-known functions ignore the (void *) pointer. 2027c478bd9Sstevel@tonic-gate * 203cb5caa98Sdjl * Backend routines return the following status codes to the switch engine: 204cb5caa98Sdjl * 2057c478bd9Sstevel@tonic-gate * SUCCESS, UNAVAIL, NOTFOUND, TRYAGAIN (these are the same codes that may 206cb5caa98Sdjl * be specified in the config information; see nsswitch.conf(4)) 207cb5caa98Sdjl * 208cb5caa98Sdjl * The remaining conditions/errors are internally generated and if 209cb5caa98Sdjl * necessary are translated, as to one of the above external errors, 210cb5caa98Sdjl * usually NOTFOUND or UNAVAIL. 211cb5caa98Sdjl * 2127c478bd9Sstevel@tonic-gate * NSS_NISSERVDNS_TRYAGAIN (should only be used by the NIS backend for 2137c478bd9Sstevel@tonic-gate * NIS server in DNS forwarding mode to indicate DNS server non-response). 214cb5caa98Sdjl * 215cb5caa98Sdjl * The policy component may return NSS_TRYLOCAL which signifies that nscd 216cb5caa98Sdjl * is not going to process the request, and it should be performed locally. 217cb5caa98Sdjl * 218cb5caa98Sdjl * NSS_ERROR is a catchall for internal error conditions, errno will be set 219cb5caa98Sdjl * to a system <errno.h> error that can help track down the problem if 220cb5caa98Sdjl * it is persistent. This error is the result of some internal error 221cb5caa98Sdjl * condition and should not be seen during or exposed to aan application. 222cb5caa98Sdjl * The error may be from the application side switch component or from the 223cb5caa98Sdjl * nscd side switch component. 224cb5caa98Sdjl * 225cb5caa98Sdjl * NSS_ALTRETRY and NSS_ALTRESET are internal codes used by the application 226cb5caa98Sdjl * side policy component and nscd to direct the policy component to 227cb5caa98Sdjl * communicate to a per-user nscd if/when per-user authentication is enabled. 228cb5caa98Sdjl * 229cb5caa98Sdjl * NSS_NSCD_PRIV is a catchall for internal nscd errors or status 230cb5caa98Sdjl * conditions. This return code is not visible to applications. nscd 231cb5caa98Sdjl * may use this as a status flag and maintain additional error or status 232cb5caa98Sdjl * information elsewhere in other private nscd data. This status value 233cb5caa98Sdjl * is for nscd private/internal use only. 2347c478bd9Sstevel@tonic-gate */ 2357c478bd9Sstevel@tonic-gate 2367c478bd9Sstevel@tonic-gate typedef enum { 237cb5caa98Sdjl NSS_SUCCESS = 0, 238cb5caa98Sdjl NSS_NOTFOUND = 1, 239cb5caa98Sdjl NSS_UNAVAIL = 2, 240cb5caa98Sdjl NSS_TRYAGAIN = 3, 241cb5caa98Sdjl NSS_NISSERVDNS_TRYAGAIN = 4, 242cb5caa98Sdjl NSS_TRYLOCAL = 5, 243cb5caa98Sdjl NSS_ERROR = 6, 244cb5caa98Sdjl NSS_ALTRETRY = 7, 245cb5caa98Sdjl NSS_ALTRESET = 8, 246cb5caa98Sdjl NSS_NSCD_PRIV = 9 2477c478bd9Sstevel@tonic-gate } nss_status_t; 2487c478bd9Sstevel@tonic-gate 2497c478bd9Sstevel@tonic-gate struct nss_backend; 2507c478bd9Sstevel@tonic-gate 2517c478bd9Sstevel@tonic-gate typedef nss_status_t (*nss_backend_op_t)(struct nss_backend *, void *args); 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate struct nss_backend { 2547c478bd9Sstevel@tonic-gate nss_backend_op_t *ops; 2557c478bd9Sstevel@tonic-gate int n_ops; 2567c478bd9Sstevel@tonic-gate }; 2577c478bd9Sstevel@tonic-gate typedef struct nss_backend nss_backend_t; 2587c478bd9Sstevel@tonic-gate typedef int nss_dbop_t; 2597c478bd9Sstevel@tonic-gate 2607c478bd9Sstevel@tonic-gate #define NSS_DBOP_DESTRUCTOR 0 2617c478bd9Sstevel@tonic-gate #define NSS_DBOP_ENDENT 1 2627c478bd9Sstevel@tonic-gate #define NSS_DBOP_SETENT 2 2637c478bd9Sstevel@tonic-gate #define NSS_DBOP_GETENT 3 2647c478bd9Sstevel@tonic-gate #define NSS_DBOP_next_iter (NSS_DBOP_GETENT + 1) 2657c478bd9Sstevel@tonic-gate #define NSS_DBOP_next_noiter (NSS_DBOP_DESTRUCTOR + 1) 2667c478bd9Sstevel@tonic-gate #define NSS_DBOP_next_ipv6_iter (NSS_DBOP_GETENT + 3) 2677c478bd9Sstevel@tonic-gate 2687c478bd9Sstevel@tonic-gate #define NSS_LOOKUP_DBOP(instp, n) \ 2697c478bd9Sstevel@tonic-gate (((n) >= 0 && (n) < (instp)->n_ops) ? (instp)->ops[n] : 0) 2707c478bd9Sstevel@tonic-gate 2717c478bd9Sstevel@tonic-gate #define NSS_INVOKE_DBOP(instp, n, argp) (\ 2727c478bd9Sstevel@tonic-gate ((n) >= 0 && (n) < (instp)->n_ops && (instp)->ops[n] != 0) \ 2737c478bd9Sstevel@tonic-gate ? (*(instp)->ops[n])(instp, argp) \ 2747c478bd9Sstevel@tonic-gate : NSS_UNAVAIL) 2757c478bd9Sstevel@tonic-gate 2767c478bd9Sstevel@tonic-gate /* 2777c478bd9Sstevel@tonic-gate * Locating and instantiating backends 2787c478bd9Sstevel@tonic-gate * ----------------------------------- 2797c478bd9Sstevel@tonic-gate * 2807c478bd9Sstevel@tonic-gate * To perform step (a), the switch consults a list of backend-finder routines, 2817c478bd9Sstevel@tonic-gate * passing a <database, source> pair. 2827c478bd9Sstevel@tonic-gate * 2837c478bd9Sstevel@tonic-gate * There is a standard backend-finder; frontends may augment or replace this 2847c478bd9Sstevel@tonic-gate * in order to, say, indicate that some backends are "compiled in" with the 2857c478bd9Sstevel@tonic-gate * frontend. 2867c478bd9Sstevel@tonic-gate * 2877c478bd9Sstevel@tonic-gate * Backend-finders return a pointer to a constructor function for the backend. 2887c478bd9Sstevel@tonic-gate * (or NULL if they can't find the backend). The switch engine caches these 2897c478bd9Sstevel@tonic-gate * function pointers; when it needs to perform step (b), it calls the 2907c478bd9Sstevel@tonic-gate * constructor function, which returns a pointer to a new instance of the 2917c478bd9Sstevel@tonic-gate * backend, properly initialized (or returns NULL). 2927c478bd9Sstevel@tonic-gate */ 2937c478bd9Sstevel@tonic-gate 2947c478bd9Sstevel@tonic-gate typedef nss_backend_t *(*nss_backend_constr_t)(const char *db_name, 2957c478bd9Sstevel@tonic-gate const char *src_name, 2967c478bd9Sstevel@tonic-gate /* Hook for (unimplemented) args in nsswitch.conf */ const char *cfg_args); 2977c478bd9Sstevel@tonic-gate 2987c478bd9Sstevel@tonic-gate struct nss_backend_finder { 2997c478bd9Sstevel@tonic-gate nss_backend_constr_t (*lookup) 3007c478bd9Sstevel@tonic-gate (void *lkp_priv, const char *, const char *, void **del_privp); 3017c478bd9Sstevel@tonic-gate void (*delete) 3027c478bd9Sstevel@tonic-gate (void *del_priv, nss_backend_constr_t); 3037c478bd9Sstevel@tonic-gate struct nss_backend_finder *next; 3047c478bd9Sstevel@tonic-gate void *lookup_priv; 3057c478bd9Sstevel@tonic-gate }; 3067c478bd9Sstevel@tonic-gate 3077c478bd9Sstevel@tonic-gate typedef struct nss_backend_finder nss_backend_finder_t; 3087c478bd9Sstevel@tonic-gate 3097c478bd9Sstevel@tonic-gate extern nss_backend_finder_t *nss_default_finders; 3107c478bd9Sstevel@tonic-gate 3117c478bd9Sstevel@tonic-gate /* 3127c478bd9Sstevel@tonic-gate * Frontend parameters 3137c478bd9Sstevel@tonic-gate * ------------------- 3147c478bd9Sstevel@tonic-gate * 3157c478bd9Sstevel@tonic-gate * The frontend must tell the switch engine: 3167c478bd9Sstevel@tonic-gate * - the database name, 3177c478bd9Sstevel@tonic-gate * - the compiled-in default configuration entry. 3187c478bd9Sstevel@tonic-gate * It may also override default values for: 3197c478bd9Sstevel@tonic-gate * - the database name to use when looking up the configuration 3207c478bd9Sstevel@tonic-gate * information (e.g. "shadow" uses the config entry for "passwd"), 3217c478bd9Sstevel@tonic-gate * - a limit on the number of instances of each backend that are 3227c478bd9Sstevel@tonic-gate * simultaneously active, 3237c478bd9Sstevel@tonic-gate * - a limit on the number of instances of each backend that are 3247c478bd9Sstevel@tonic-gate * simultaneously dormant (waiting for new requests), 3257c478bd9Sstevel@tonic-gate * - a flag that tells the switch engine to use the default configuration 3267c478bd9Sstevel@tonic-gate * entry and ignore any other config entry for this database, 3277c478bd9Sstevel@tonic-gate * - backend-finders (see above) 3287c478bd9Sstevel@tonic-gate * - a cleanup routine that should be called when these parameters are 3297c478bd9Sstevel@tonic-gate * about to be deleted. 3307c478bd9Sstevel@tonic-gate * 3317c478bd9Sstevel@tonic-gate * In order to do this, the frontend includes a pointer to an initialization 3327c478bd9Sstevel@tonic-gate * function (nss_db_initf_t) in every nss_*() call. When necessary (normally 3337c478bd9Sstevel@tonic-gate * just on the first invocation), the switch engine allocates a parameter 3347c478bd9Sstevel@tonic-gate * structure (nss_db_params_t), fills in the default values, then calls 3357c478bd9Sstevel@tonic-gate * the initialization function, which should update the parameter structure 3367c478bd9Sstevel@tonic-gate * as necessary. 3377c478bd9Sstevel@tonic-gate * 3387c478bd9Sstevel@tonic-gate * (This might look more natural if we put nss_db_initf_t in nss_db_root_t, 3397c478bd9Sstevel@tonic-gate * or abolished nss_db_initf_t and put nss_db_params_t in nss_db_root_t. 3407c478bd9Sstevel@tonic-gate * It's done the way it is for shared-library efficiency, namely: 3417c478bd9Sstevel@tonic-gate * - keep the unshared data (nss_db_root_t) to a minimum, 3427c478bd9Sstevel@tonic-gate * - keep the symbol lookups and relocations to a minimum. 3437c478bd9Sstevel@tonic-gate * In particular this means that non-null pointers, e.g. strings and 3447c478bd9Sstevel@tonic-gate * function pointers, in global data are a bad thing). 3457c478bd9Sstevel@tonic-gate */ 3467c478bd9Sstevel@tonic-gate 3477c478bd9Sstevel@tonic-gate enum nss_dbp_flags { 3487c478bd9Sstevel@tonic-gate NSS_USE_DEFAULT_CONFIG = 0x1 3497c478bd9Sstevel@tonic-gate }; 3507c478bd9Sstevel@tonic-gate 3517c478bd9Sstevel@tonic-gate struct nss_db_params { 3527c478bd9Sstevel@tonic-gate const char *name; /* Mandatory: database name */ 3537c478bd9Sstevel@tonic-gate const char *config_name; /* config-file database name */ 3547c478bd9Sstevel@tonic-gate const char *default_config; /* Mandatory: default config */ 3557c478bd9Sstevel@tonic-gate unsigned max_active_per_src; 3567c478bd9Sstevel@tonic-gate unsigned max_dormant_per_src; 3577c478bd9Sstevel@tonic-gate enum nss_dbp_flags flags; 3587c478bd9Sstevel@tonic-gate nss_backend_finder_t *finders; 3597c478bd9Sstevel@tonic-gate void *private; /* Not used by switch */ 3607c478bd9Sstevel@tonic-gate void (*cleanup)(struct nss_db_params *); 3617c478bd9Sstevel@tonic-gate }; 3627c478bd9Sstevel@tonic-gate 3637c478bd9Sstevel@tonic-gate typedef struct nss_db_params nss_db_params_t; 3647c478bd9Sstevel@tonic-gate 3657c478bd9Sstevel@tonic-gate typedef void (*nss_db_initf_t)(nss_db_params_t *); 3667c478bd9Sstevel@tonic-gate 3677c478bd9Sstevel@tonic-gate /* 368cb5caa98Sdjl * DBD param offsets in NSS2 nscd header. 369cb5caa98Sdjl * Offsets are relative to beginning of dbd section. 370cb5caa98Sdjl * 32 bit offsets should be sufficient, forever. 371cb5caa98Sdjl * 0 offset == NULL 372cb5caa98Sdjl * flags == nss_dbp_flags 373cb5caa98Sdjl */ 374cb5caa98Sdjl typedef struct nss_dbd { 375cb5caa98Sdjl uint32_t o_name; 376cb5caa98Sdjl uint32_t o_config_name; 377cb5caa98Sdjl uint32_t o_default_config; 378cb5caa98Sdjl uint32_t flags; 379cb5caa98Sdjl } nss_dbd_t; 380cb5caa98Sdjl 381cb5caa98Sdjl /* 3827c478bd9Sstevel@tonic-gate * These structures are defined inside the implementation of the switch 3837c478bd9Sstevel@tonic-gate * engine; the interface just holds pointers to them. 3847c478bd9Sstevel@tonic-gate */ 3857c478bd9Sstevel@tonic-gate struct nss_db_state; 3867c478bd9Sstevel@tonic-gate struct nss_getent_context; 3877c478bd9Sstevel@tonic-gate 3887c478bd9Sstevel@tonic-gate /* 3897c478bd9Sstevel@tonic-gate * Finally, the two handles that frontends hold: 3907c478bd9Sstevel@tonic-gate */ 3917c478bd9Sstevel@tonic-gate 3927c478bd9Sstevel@tonic-gate struct nss_db_root { 3937c478bd9Sstevel@tonic-gate struct nss_db_state *s; 3947c478bd9Sstevel@tonic-gate mutex_t lock; 3957c478bd9Sstevel@tonic-gate }; 3967c478bd9Sstevel@tonic-gate typedef struct nss_db_root nss_db_root_t; 3977c478bd9Sstevel@tonic-gate #define NSS_DB_ROOT_INIT { 0, DEFAULTMUTEX } 3987c478bd9Sstevel@tonic-gate #define DEFINE_NSS_DB_ROOT(name) nss_db_root_t name = NSS_DB_ROOT_INIT 3997c478bd9Sstevel@tonic-gate 4007c478bd9Sstevel@tonic-gate 4017c478bd9Sstevel@tonic-gate typedef struct { 4027c478bd9Sstevel@tonic-gate struct nss_getent_context *ctx; 4037c478bd9Sstevel@tonic-gate mutex_t lock; 4047c478bd9Sstevel@tonic-gate } nss_getent_t; 4057c478bd9Sstevel@tonic-gate 4067c478bd9Sstevel@tonic-gate #define NSS_GETENT_INIT { 0, DEFAULTMUTEX } 4077c478bd9Sstevel@tonic-gate #define DEFINE_NSS_GETENT(name) nss_getent_t name = NSS_GETENT_INIT 4087c478bd9Sstevel@tonic-gate 409cb5caa98Sdjl /* 410cb5caa98Sdjl * Policy Engine Configuration 411cb5caa98Sdjl * --------------------------- 412cb5caa98Sdjl * 413cb5caa98Sdjl * When nscd is running it can reconfigure it's internal policy engine 414cb5caa98Sdjl * as well as advise an application's front-end and policy engine on how 415cb5caa98Sdjl * respond optimally to results being returned from nscd. This is done 416cb5caa98Sdjl * through the policy engine configuration interface. 417cb5caa98Sdjl */ 418cb5caa98Sdjl 419cb5caa98Sdjl typedef enum { 420cb5caa98Sdjl NSS_CONFIG_GET, 421cb5caa98Sdjl NSS_CONFIG_PUT, 422cb5caa98Sdjl NSS_CONFIG_ADD, 423cb5caa98Sdjl NSS_CONFIG_DELETE, 424cb5caa98Sdjl NSS_CONFIG_LIST 425cb5caa98Sdjl } nss_config_op_t; 426cb5caa98Sdjl 427cb5caa98Sdjl struct nss_config { 428cb5caa98Sdjl char *name; 429cb5caa98Sdjl nss_config_op_t cop; 430cb5caa98Sdjl mutex_t *lock; 431cb5caa98Sdjl void *buffer; 432cb5caa98Sdjl size_t length; 433cb5caa98Sdjl }; 434cb5caa98Sdjl typedef struct nss_config nss_config_t; 435cb5caa98Sdjl 436cb5caa98Sdjl 437cb5caa98Sdjl extern nss_status_t nss_config(nss_config_t **, int); 438cb5caa98Sdjl 4397c478bd9Sstevel@tonic-gate extern nss_status_t nss_search(nss_db_root_t *, nss_db_initf_t, 4407c478bd9Sstevel@tonic-gate int search_fnum, void *search_args); 4417c478bd9Sstevel@tonic-gate extern nss_status_t nss_getent(nss_db_root_t *, nss_db_initf_t, nss_getent_t *, 4427c478bd9Sstevel@tonic-gate void *getent_args); 4437c478bd9Sstevel@tonic-gate extern void nss_setent(nss_db_root_t *, nss_db_initf_t, nss_getent_t *); 4447c478bd9Sstevel@tonic-gate extern void nss_endent(nss_db_root_t *, nss_db_initf_t, nss_getent_t *); 4457c478bd9Sstevel@tonic-gate extern void nss_delete(nss_db_root_t *); 446cb5caa98Sdjl 447cb5caa98Sdjl extern nss_status_t nss_pack(void *, size_t, nss_db_root_t *, 448cb5caa98Sdjl nss_db_initf_t, int, void *); 449cb5caa98Sdjl extern nss_status_t nss_pack_ent(void *, size_t, nss_db_root_t *, 450cb5caa98Sdjl nss_db_initf_t, nss_getent_t *); 451cb5caa98Sdjl extern nss_status_t nss_unpack(void *, size_t, nss_db_root_t *, 452cb5caa98Sdjl nss_db_initf_t, int, void *); 453cb5caa98Sdjl extern nss_status_t nss_unpack_ent(void *, size_t, nss_db_root_t *, 454cb5caa98Sdjl nss_db_initf_t, nss_getent_t *, void *); 455cb5caa98Sdjl 456cb5caa98Sdjl extern nss_status_t _nsc_search(nss_db_root_t *, nss_db_initf_t, 457cb5caa98Sdjl int search_fnum, void *search_args); 458cb5caa98Sdjl extern nss_status_t _nsc_getent_u(nss_db_root_t *, nss_db_initf_t, 459cb5caa98Sdjl nss_getent_t *, void *getent_args); 460cb5caa98Sdjl extern nss_status_t _nsc_setent_u(nss_db_root_t *, nss_db_initf_t, 461cb5caa98Sdjl nss_getent_t *); 462cb5caa98Sdjl extern nss_status_t _nsc_endent_u(nss_db_root_t *, nss_db_initf_t, 463cb5caa98Sdjl nss_getent_t *); 464cb5caa98Sdjl 4657c478bd9Sstevel@tonic-gate 4667c478bd9Sstevel@tonic-gate #ifdef __cplusplus 4677c478bd9Sstevel@tonic-gate } 4687c478bd9Sstevel@tonic-gate #endif 4697c478bd9Sstevel@tonic-gate 4707c478bd9Sstevel@tonic-gate #endif /* _NSS_COMMON_H */ 471