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*c5866007SKeyur Desai * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 23c5c4113dSnw141292 */ 24c5c4113dSnw141292 25c5c4113dSnw141292 /* 26c5c4113dSnw141292 * Header File for Clients of Native Identity Mapping Service 27c5c4113dSnw141292 */ 28c5c4113dSnw141292 29c5c4113dSnw141292 #ifndef _IDMAP_H 30c5c4113dSnw141292 #define _IDMAP_H 31c5c4113dSnw141292 32c5c4113dSnw141292 33c5c4113dSnw141292 #include <stdlib.h> 34c5c4113dSnw141292 #include <ctype.h> 35c5c4113dSnw141292 #include <sys/param.h> 36c5c4113dSnw141292 #include <sys/types.h> 37c5c4113dSnw141292 #include <sys/stat.h> 38c5c4113dSnw141292 #include <sys/idmap.h> 39c5c4113dSnw141292 40c5c4113dSnw141292 #ifdef __cplusplus 41c5c4113dSnw141292 extern "C" { 42c5c4113dSnw141292 #endif 43c5c4113dSnw141292 44c5c4113dSnw141292 /* Status */ 45c5c4113dSnw141292 typedef int32_t idmap_stat; 46c5c4113dSnw141292 47c5c4113dSnw141292 typedef uint32_t idmap_rid_t; 48c5c4113dSnw141292 49c5c4113dSnw141292 /* Opaque client handle */ 50c5c4113dSnw141292 typedef struct idmap_handle idmap_handle_t; 51c5c4113dSnw141292 52c5c4113dSnw141292 /* Opaque "get-mapping" handle */ 53c5c4113dSnw141292 typedef struct idmap_get_handle idmap_get_handle_t; 54c5c4113dSnw141292 557a8a68f5SJulian Pullen /* Logger prototype which is based on syslog */ 56*c5866007SKeyur Desai typedef void (*idmap_logger_t)(int, const char *, ...); 57479ac375Sdm199847 58c5c4113dSnw141292 /* 59c5c4113dSnw141292 * Setup API 60c5c4113dSnw141292 */ 61c5c4113dSnw141292 /* Create/Init handle for userland clients */ 62c5c4113dSnw141292 extern idmap_stat idmap_init(idmap_handle_t **); 63c5c4113dSnw141292 64c5c4113dSnw141292 /* Finalize/close handle */ 65c5c4113dSnw141292 extern idmap_stat idmap_fini(idmap_handle_t *); 66c5c4113dSnw141292 67c5c4113dSnw141292 /* Status code to string */ 68c5c4113dSnw141292 extern const char *idmap_stat2string(idmap_handle_t *, idmap_stat); 69c5c4113dSnw141292 70c5c4113dSnw141292 /* Free memory allocated by the API */ 71c5c4113dSnw141292 extern void idmap_free(void *); 72c5c4113dSnw141292 73c5c4113dSnw141292 74c5c4113dSnw141292 /* 753ee87bcaSJulian Pullen * Supported flag values for mapping requests. 763ee87bcaSJulian Pullen * These flag values are applicable to the batch API and the 773ee87bcaSJulian Pullen * Windows Name API below. 783ee87bcaSJulian Pullen */ 793ee87bcaSJulian Pullen /* Use the libidmap cache */ 803ee87bcaSJulian Pullen #define IDMAP_REQ_FLG_USE_CACHE 0x00000010 813ee87bcaSJulian Pullen 823ee87bcaSJulian Pullen /* 83c5c4113dSnw141292 * API to batch SID to UID/GID mapping requests 84c5c4113dSnw141292 */ 85c5c4113dSnw141292 /* Create handle */ 86c5c4113dSnw141292 extern idmap_stat idmap_get_create(idmap_handle_t *, idmap_get_handle_t **); 87c5c4113dSnw141292 88c5c4113dSnw141292 /* Given SID, get UID */ 89c5c4113dSnw141292 extern idmap_stat idmap_get_uidbysid(idmap_get_handle_t *, char *, 90c5c4113dSnw141292 idmap_rid_t, int, uid_t *, idmap_stat *); 91c5c4113dSnw141292 92c5c4113dSnw141292 /* Given SID, get GID */ 93c5c4113dSnw141292 extern idmap_stat idmap_get_gidbysid(idmap_get_handle_t *, char *, 94c5c4113dSnw141292 idmap_rid_t, int, gid_t *, idmap_stat *); 95c5c4113dSnw141292 96c5c4113dSnw141292 /* Given SID, get UID or GID */ 97c5c4113dSnw141292 extern idmap_stat idmap_get_pidbysid(idmap_get_handle_t *, char *, 98c5c4113dSnw141292 idmap_rid_t, int, uid_t *, int *, idmap_stat *); 99c5c4113dSnw141292 100c5c4113dSnw141292 /* Given UID, get SID */ 101c5c4113dSnw141292 extern idmap_stat idmap_get_sidbyuid(idmap_get_handle_t *, uid_t, int, 102c5c4113dSnw141292 char **, idmap_rid_t *, idmap_stat *); 103c5c4113dSnw141292 104c5c4113dSnw141292 /* Given GID, get SID */ 105c5c4113dSnw141292 extern idmap_stat idmap_get_sidbygid(idmap_get_handle_t *, gid_t, int, 106c5c4113dSnw141292 char **, idmap_rid_t *, idmap_stat *); 107c5c4113dSnw141292 108c5c4113dSnw141292 /* Process the batched requests */ 109c5c4113dSnw141292 extern idmap_stat idmap_get_mappings(idmap_get_handle_t *); 110c5c4113dSnw141292 111c5c4113dSnw141292 /* Destroy the handle */ 112c5c4113dSnw141292 extern void idmap_get_destroy(idmap_get_handle_t *); 113c5c4113dSnw141292 114dd5829d1Sbaban 115dd5829d1Sbaban /* 116dd5829d1Sbaban * API to get Windows name by UID/GID and vice-versa 117dd5829d1Sbaban */ 118dd5829d1Sbaban /* Given UID, get Windows name */ 1193ee87bcaSJulian Pullen extern idmap_stat idmap_getwinnamebyuid(uid_t, int, char **, char **); 120dd5829d1Sbaban 121dd5829d1Sbaban /* Given GID, get Windows name */ 1223ee87bcaSJulian Pullen extern idmap_stat idmap_getwinnamebygid(gid_t, int, char **, char **); 123dd5829d1Sbaban 124dd5829d1Sbaban /* Given Windows name, get UID */ 1253ee87bcaSJulian Pullen extern idmap_stat idmap_getuidbywinname(const char *, const char *, 1263ee87bcaSJulian Pullen int, uid_t *); 127dd5829d1Sbaban 128dd5829d1Sbaban /* Given Windows name, get GID */ 1293ee87bcaSJulian Pullen extern idmap_stat idmap_getgidbywinname(const char *, const char *, 1303ee87bcaSJulian Pullen int, gid_t *); 131dd5829d1Sbaban 132dd5829d1Sbaban 1337a8a68f5SJulian Pullen /* Logger */ 134*c5866007SKeyur Desai extern void idmap_set_logger(idmap_logger_t funct); 1357a8a68f5SJulian Pullen 136c5c4113dSnw141292 #ifdef __cplusplus 137c5c4113dSnw141292 } 138c5c4113dSnw141292 #endif 139c5c4113dSnw141292 140c5c4113dSnw141292 #endif /* _IDMAP_H */ 141