1c5c4113dSnw141292 /* 2c5c4113dSnw141292 * CDDL HEADER START 3c5c4113dSnw141292 * 4c5c4113dSnw141292 * The contents of this file are subject to the terms of the 5c5c4113dSnw141292 * Common Development and Distribution License (the "License"). 6c5c4113dSnw141292 * You may not use this file except in compliance with the License. 7c5c4113dSnw141292 * 8c5c4113dSnw141292 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9c5c4113dSnw141292 * or http://www.opensolaris.org/os/licensing. 10c5c4113dSnw141292 * See the License for the specific language governing permissions 11c5c4113dSnw141292 * and limitations under the License. 12c5c4113dSnw141292 * 13c5c4113dSnw141292 * When distributing Covered Code, include this CDDL HEADER in each 14c5c4113dSnw141292 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15c5c4113dSnw141292 * If applicable, add the following below this CDDL HEADER, with the 16c5c4113dSnw141292 * fields enclosed by brackets "[]" replaced with your own identifying 17c5c4113dSnw141292 * information: Portions Copyright [yyyy] [name of copyright owner] 18c5c4113dSnw141292 * 19c5c4113dSnw141292 * CDDL HEADER END 20c5c4113dSnw141292 */ 21c5c4113dSnw141292 /* 22*7a8a68f5SJulian Pullen * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23c5c4113dSnw141292 * Use is subject to license terms. 24c5c4113dSnw141292 */ 25c5c4113dSnw141292 26c5c4113dSnw141292 /* 27c5c4113dSnw141292 * Header File for Clients of Native Identity Mapping Service 28c5c4113dSnw141292 */ 29c5c4113dSnw141292 30c5c4113dSnw141292 #ifndef _IDMAP_H 31c5c4113dSnw141292 #define _IDMAP_H 32c5c4113dSnw141292 33c5c4113dSnw141292 34c5c4113dSnw141292 #include <stdlib.h> 35c5c4113dSnw141292 #include <ctype.h> 36c5c4113dSnw141292 #include <sys/param.h> 37c5c4113dSnw141292 #include <sys/types.h> 38c5c4113dSnw141292 #include <sys/stat.h> 39c5c4113dSnw141292 #include <sys/idmap.h> 40c5c4113dSnw141292 41c5c4113dSnw141292 #ifdef __cplusplus 42c5c4113dSnw141292 extern "C" { 43c5c4113dSnw141292 #endif 44c5c4113dSnw141292 45c5c4113dSnw141292 /* Status */ 46c5c4113dSnw141292 typedef int32_t idmap_stat; 47c5c4113dSnw141292 48c5c4113dSnw141292 typedef uint32_t idmap_rid_t; 49c5c4113dSnw141292 50c5c4113dSnw141292 /* Opaque client handle */ 51c5c4113dSnw141292 typedef struct idmap_handle idmap_handle_t; 52c5c4113dSnw141292 53c5c4113dSnw141292 /* Opaque "get-mapping" handle */ 54c5c4113dSnw141292 typedef struct idmap_get_handle idmap_get_handle_t; 55c5c4113dSnw141292 56*7a8a68f5SJulian Pullen /* Logger prototype which is based on syslog */ 57*7a8a68f5SJulian Pullen typedef void (*idmap_logger)(int, const char *, ...); 58479ac375Sdm199847 59c5c4113dSnw141292 /* 60c5c4113dSnw141292 * Setup API 61c5c4113dSnw141292 */ 62c5c4113dSnw141292 /* Create/Init handle for userland clients */ 63c5c4113dSnw141292 extern idmap_stat idmap_init(idmap_handle_t **); 64c5c4113dSnw141292 65c5c4113dSnw141292 /* Finalize/close handle */ 66c5c4113dSnw141292 extern idmap_stat idmap_fini(idmap_handle_t *); 67c5c4113dSnw141292 68c5c4113dSnw141292 /* Status code to string */ 69c5c4113dSnw141292 extern const char *idmap_stat2string(idmap_handle_t *, idmap_stat); 70c5c4113dSnw141292 71c5c4113dSnw141292 /* Free memory allocated by the API */ 72c5c4113dSnw141292 extern void idmap_free(void *); 73c5c4113dSnw141292 74c5c4113dSnw141292 75c5c4113dSnw141292 /* 763ee87bcaSJulian Pullen * Supported flag values for mapping requests. 773ee87bcaSJulian Pullen * These flag values are applicable to the batch API and the 783ee87bcaSJulian Pullen * Windows Name API below. 793ee87bcaSJulian Pullen */ 803ee87bcaSJulian Pullen /* Use the libidmap cache */ 813ee87bcaSJulian Pullen #define IDMAP_REQ_FLG_USE_CACHE 0x00000010 823ee87bcaSJulian Pullen 833ee87bcaSJulian Pullen /* 84c5c4113dSnw141292 * API to batch SID to UID/GID mapping requests 85c5c4113dSnw141292 */ 86c5c4113dSnw141292 /* Create handle */ 87c5c4113dSnw141292 extern idmap_stat idmap_get_create(idmap_handle_t *, idmap_get_handle_t **); 88c5c4113dSnw141292 89c5c4113dSnw141292 /* Given SID, get UID */ 90c5c4113dSnw141292 extern idmap_stat idmap_get_uidbysid(idmap_get_handle_t *, char *, 91c5c4113dSnw141292 idmap_rid_t, int, uid_t *, idmap_stat *); 92c5c4113dSnw141292 93c5c4113dSnw141292 /* Given SID, get GID */ 94c5c4113dSnw141292 extern idmap_stat idmap_get_gidbysid(idmap_get_handle_t *, char *, 95c5c4113dSnw141292 idmap_rid_t, int, gid_t *, idmap_stat *); 96c5c4113dSnw141292 97c5c4113dSnw141292 /* Given SID, get UID or GID */ 98c5c4113dSnw141292 extern idmap_stat idmap_get_pidbysid(idmap_get_handle_t *, char *, 99c5c4113dSnw141292 idmap_rid_t, int, uid_t *, int *, idmap_stat *); 100c5c4113dSnw141292 101c5c4113dSnw141292 /* Given UID, get SID */ 102c5c4113dSnw141292 extern idmap_stat idmap_get_sidbyuid(idmap_get_handle_t *, uid_t, int, 103c5c4113dSnw141292 char **, idmap_rid_t *, idmap_stat *); 104c5c4113dSnw141292 105c5c4113dSnw141292 /* Given GID, get SID */ 106c5c4113dSnw141292 extern idmap_stat idmap_get_sidbygid(idmap_get_handle_t *, gid_t, int, 107c5c4113dSnw141292 char **, idmap_rid_t *, idmap_stat *); 108c5c4113dSnw141292 109c5c4113dSnw141292 /* Process the batched requests */ 110c5c4113dSnw141292 extern idmap_stat idmap_get_mappings(idmap_get_handle_t *); 111c5c4113dSnw141292 112c5c4113dSnw141292 /* Destroy the handle */ 113c5c4113dSnw141292 extern void idmap_get_destroy(idmap_get_handle_t *); 114c5c4113dSnw141292 115dd5829d1Sbaban 116dd5829d1Sbaban /* 117dd5829d1Sbaban * API to get Windows name by UID/GID and vice-versa 118dd5829d1Sbaban */ 119dd5829d1Sbaban /* Given UID, get Windows name */ 1203ee87bcaSJulian Pullen extern idmap_stat idmap_getwinnamebyuid(uid_t, int, char **, char **); 121dd5829d1Sbaban 122dd5829d1Sbaban /* Given GID, get Windows name */ 1233ee87bcaSJulian Pullen extern idmap_stat idmap_getwinnamebygid(gid_t, int, char **, char **); 124dd5829d1Sbaban 125dd5829d1Sbaban /* Given Windows name, get UID */ 1263ee87bcaSJulian Pullen extern idmap_stat idmap_getuidbywinname(const char *, const char *, 1273ee87bcaSJulian Pullen int, uid_t *); 128dd5829d1Sbaban 129dd5829d1Sbaban /* Given Windows name, get GID */ 1303ee87bcaSJulian Pullen extern idmap_stat idmap_getgidbywinname(const char *, const char *, 1313ee87bcaSJulian Pullen int, gid_t *); 132dd5829d1Sbaban 133dd5829d1Sbaban 134*7a8a68f5SJulian Pullen /* Logger */ 135*7a8a68f5SJulian Pullen extern void idmap_set_logger(idmap_logger funct); 136*7a8a68f5SJulian Pullen 137c5c4113dSnw141292 #ifdef __cplusplus 138c5c4113dSnw141292 } 139c5c4113dSnw141292 #endif 140c5c4113dSnw141292 141c5c4113dSnw141292 #endif /* _IDMAP_H */ 142