/* * 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 * or http://www.opensolaris.org/os/licensing. * 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 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #include #include #include #define SMB_IDMAP_STATE_INIT 1 #define SMB_IDMAP_STATE_FINI 2 typedef struct smb_idmap_handle { idmap_handle_t *sih_handle; int sih_state; rwlock_t sih_rwl; } smb_idmap_handle_t; static smb_idmap_handle_t smb_idmaph; static int smb_idmap_batch_binsid(smb_idmap_batch_t *sib); /* * smb_idmap_start * * This function initializes the idmap client handle. It should be called * at startup. */ int smb_idmap_start(void) { idmap_stat stat; (void) rw_wrlock(&smb_idmaph.sih_rwl); if (smb_idmaph.sih_state == SMB_IDMAP_STATE_INIT) { (void) rw_unlock(&smb_idmaph.sih_rwl); return (0); } stat = idmap_init(&smb_idmaph.sih_handle); if (stat < 0) { (void) rw_unlock(&smb_idmaph.sih_rwl); syslog(LOG_ERR, "smb_idmap_start: idmap_init failed (%s)", idmap_stat2string(NULL, stat)); return (-1); } smb_idmaph.sih_state = SMB_IDMAP_STATE_INIT; (void) rw_unlock(&smb_idmaph.sih_rwl); return (0); } /* * smb_idmap_stop * * This function destroys the idmap client handle. It should be called * prior to exiting the SMB daemon. */ void smb_idmap_stop(void) { (void) rw_wrlock(&smb_idmaph.sih_rwl); if (smb_idmaph.sih_state == SMB_IDMAP_STATE_INIT) { (void) idmap_fini(smb_idmaph.sih_handle); smb_idmaph.sih_state = SMB_IDMAP_STATE_FINI; } (void) rw_unlock(&smb_idmaph.sih_rwl); } /* * smb_idmap_restart * * This function should be called when the idmap client handle * becomes invalid. */ int smb_idmap_restart(void) { idmap_stat stat; int rc = 0; (void) rw_wrlock(&smb_idmaph.sih_rwl); if (smb_idmaph.sih_state == SMB_IDMAP_STATE_FINI) { (void) rw_unlock(&smb_idmaph.sih_rwl); return (-1); } (void) idmap_fini(smb_idmaph.sih_handle); stat = idmap_init(&smb_idmaph.sih_handle); if (stat < 0) { syslog(LOG_ERR, "smb_idmap_restart: idmap_init failed (%s)", idmap_stat2string(NULL, stat)); rc = -1; } (void) rw_unlock(&smb_idmaph.sih_rwl); return (rc); } /* * smb_idmap_getsid * * Tries to get a mapping for the given uid/gid */ idmap_stat smb_idmap_getsid(uid_t id, int idtype, smb_sid_t **sid) { smb_idmap_batch_t sib; idmap_stat stat; stat = smb_idmap_batch_create(&sib, 1, SMB_IDMAP_ID2SID); if (stat != IDMAP_SUCCESS) return (stat); stat = smb_idmap_batch_getsid(sib.sib_idmaph, &sib.sib_maps[0], id, idtype); if (stat != IDMAP_SUCCESS) { smb_idmap_batch_destroy(&sib); return (stat); } stat = smb_idmap_batch_getmappings(&sib); if (stat != IDMAP_SUCCESS) { smb_idmap_batch_destroy(&sib); return (stat); } *sid = smb_sid_dup(sib.sib_maps[0].sim_sid); smb_idmap_batch_destroy(&sib); return (IDMAP_SUCCESS); } /* * smb_idmap_getid * * Tries to get a mapping for the given SID */ idmap_stat smb_idmap_getid(smb_sid_t *sid, uid_t *id, int *id_type) { smb_idmap_batch_t sib; smb_idmap_t *sim; idmap_stat stat; stat = smb_idmap_batch_create(&sib, 1, SMB_IDMAP_SID2ID); if (stat != IDMAP_SUCCESS) return (stat); sim = &sib.sib_maps[0]; sim->sim_id = id; stat = smb_idmap_batch_getid(sib.sib_idmaph, sim, sid, *id_type); if (stat != IDMAP_SUCCESS) { smb_idmap_batch_destroy(&sib); return (stat); } stat = smb_idmap_batch_getmappings(&sib); if (stat != IDMAP_SUCCESS) { smb_idmap_batch_destroy(&sib); return (stat); } *id_type = sim->sim_idtype; smb_idmap_batch_destroy(&sib); return (IDMAP_SUCCESS); } /* * smb_idmap_batch_create * * Creates and initializes the context for batch ID mapping. */ idmap_stat smb_idmap_batch_create(smb_idmap_batch_t *sib, uint16_t nmap, int flags) { idmap_stat stat; if (!sib) return (IDMAP_ERR_ARG); (void) rw_rdlock(&smb_idmaph.sih_rwl); if (smb_idmaph.sih_state != SMB_IDMAP_STATE_INIT) { (void) rw_unlock(&smb_idmaph.sih_rwl); return (IDMAP_ERR_OTHER); } bzero(sib, sizeof (smb_idmap_batch_t)); stat = idmap_get_create(smb_idmaph.sih_handle, &sib->sib_idmaph); (void) rw_unlock(&smb_idmaph.sih_rwl); if (stat != IDMAP_SUCCESS) return (stat); sib->sib_flags = flags; sib->sib_nmap = nmap; sib->sib_size = nmap * sizeof (smb_idmap_t); sib->sib_maps = malloc(sib->sib_size); if (!sib->sib_maps) return (IDMAP_ERR_MEMORY); bzero(sib->sib_maps, sib->sib_size); return (IDMAP_SUCCESS); } /* * smb_idmap_batch_destroy * * Frees the batch ID mapping context. */ void smb_idmap_batch_destroy(smb_idmap_batch_t *sib) { int i; if (sib == NULL) return; if (sib->sib_idmaph) { idmap_get_destroy(sib->sib_idmaph); sib->sib_idmaph = NULL; } if (sib->sib_maps == NULL) return; if (sib->sib_flags & SMB_IDMAP_ID2SID) { /* * SIDs are allocated only when mapping * UID/GID to SIDs */ for (i = 0; i < sib->sib_nmap; i++) smb_sid_free(sib->sib_maps[i].sim_sid); } if (sib->sib_size && sib->sib_maps) { free(sib->sib_maps); sib->sib_maps = NULL; } } /* * smb_idmap_batch_getid * * Queue a request to map the given SID to a UID or GID. * * sim->sim_id should point to variable that's supposed to * hold the returned UID/GID. This needs to be setup by caller * of this function. * If requested ID type is known, it's passed as 'idtype', * if it's unknown it'll be returned in sim->sim_idtype. */ idmap_stat smb_idmap_batch_getid(idmap_get_handle_t *idmaph, smb_idmap_t *sim, smb_sid_t *sid, int idtype) { char sidstr[SMB_SID_STRSZ]; smb_sid_t *tmpsid; idmap_stat stat; int flag = 0; if (idmaph == NULL || sim == NULL || sid == NULL) return (IDMAP_ERR_ARG); if ((tmpsid = smb_sid_split(sid, &sim->sim_rid)) == NULL) return (IDMAP_ERR_MEMORY); smb_sid_tostr(tmpsid, sidstr); sim->sim_domsid = sidstr; smb_sid_free(tmpsid); switch (idtype) { case SMB_IDMAP_USER: stat = idmap_get_uidbysid(idmaph, sim->sim_domsid, sim->sim_rid, flag, sim->sim_id, &sim->sim_stat); break; case SMB_IDMAP_GROUP: stat = idmap_get_gidbysid(idmaph, sim->sim_domsid, sim->sim_rid, flag, sim->sim_id, &sim->sim_stat); break; case SMB_IDMAP_UNKNOWN: stat = idmap_get_pidbysid(idmaph, sim->sim_domsid, sim->sim_rid, flag, sim->sim_id, &sim->sim_idtype, &sim->sim_stat); break; default: return (IDMAP_ERR_ARG); } return (stat); } /* * smb_idmap_batch_getsid * * Queue a request to map the given UID/GID to a SID. * * sim->sim_domsid and sim->sim_rid will contain the mapping * result upon successful process of the batched request. */ idmap_stat smb_idmap_batch_getsid(idmap_get_handle_t *idmaph, smb_idmap_t *sim, uid_t id, int idtype) { idmap_stat stat; int flag = 0; if (!idmaph || !sim) return (IDMAP_ERR_ARG); switch (idtype) { case SMB_IDMAP_USER: stat = idmap_get_sidbyuid(idmaph, id, flag, &sim->sim_domsid, &sim->sim_rid, &sim->sim_stat); break; case SMB_IDMAP_GROUP: stat = idmap_get_sidbygid(idmaph, id, flag, &sim->sim_domsid, &sim->sim_rid, &sim->sim_stat); break; case SMB_IDMAP_EVERYONE: /* Everyone S-1-1-0 */ sim->sim_domsid = strdup("S-1-1"); sim->sim_rid = 0; sim->sim_stat = IDMAP_SUCCESS; stat = IDMAP_SUCCESS; break; default: return (IDMAP_ERR_ARG); } return (stat); } /* * smb_idmap_batch_getmappings * * trigger ID mapping service to get the mappings for queued * requests. * * Checks the result of all the queued requests. */ idmap_stat smb_idmap_batch_getmappings(smb_idmap_batch_t *sib) { idmap_stat stat = IDMAP_SUCCESS; smb_idmap_t *sim; int i; if ((stat = idmap_get_mappings(sib->sib_idmaph)) != IDMAP_SUCCESS) return (stat); /* * Check the status for all the queued requests */ for (i = 0, sim = sib->sib_maps; i < sib->sib_nmap; i++, sim++) { if (sim->sim_stat != IDMAP_SUCCESS) { if (sib->sib_flags == SMB_IDMAP_SID2ID) { smb_tracef("[%d] %d (%d)", sim->sim_idtype, sim->sim_rid, sim->sim_stat); } return (sim->sim_stat); } } if (smb_idmap_batch_binsid(sib) != 0) stat = IDMAP_ERR_OTHER; return (stat); } /* * smb_idmap_batch_binsid * * Convert sidrids to binary sids * * Returns 0 if successful and non-zero upon failure. */ static int smb_idmap_batch_binsid(smb_idmap_batch_t *sib) { smb_sid_t *sid; smb_idmap_t *sim; int i; if (sib->sib_flags & SMB_IDMAP_SID2ID) /* This operation is not required */ return (0); sim = sib->sib_maps; for (i = 0; i < sib->sib_nmap; sim++, i++) { if (sim->sim_domsid == NULL) return (-1); sid = smb_sid_fromstr(sim->sim_domsid); free(sim->sim_domsid); if (sid == NULL) return (-1); sim->sim_sid = smb_sid_splice(sid, sim->sim_rid); free(sid); } return (0); }