/* Editor Settings: expandtabs and use 4 spaces for indentation * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: * */ /* * Copyright Likewise Software 2004-2009 * All rights reserved. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the license, or (at * your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser * General Public License for more details. You should have received a copy * of the GNU Lesser General Public License along with this program. If * not, see . * * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING * TERMS AS WELL. IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU * LESSER GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE. IF YOU * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT * license@likewisesoftware.com */ /* * Copyright (C) Likewise Software. All rights reserved. * * Module Name: * * lsadefs.h * * Abstract: * * Remote Procedure Call (RPC) Server Interface * * Lsa rpc server definitions * * Authors: Rafal Szczesniak (rafal@likewise.com) */ #ifndef _LSASRVDEFS_H_ #define _LSASRVDEFS_H_ #define LSA_RPC_DIR CACHEDIR "/rpc" #define LSA_DEFAULT_LPC_SOCKET_PATH LSA_RPC_DIR "/lsass" #define LSASS_KRB5_CACHE_PATH "FILE:" CACHEDIR "/krb5cc_lsass" #define LSA_BUILTIN_DOMAIN_NAME \ {'B','U','I','L','T','I','N',0} /* * Indices of an array returned from LsaSrvSelectAccountsByDomainName * and LsaSrvSelectAccountsByDomainSid */ typedef enum _LSA_ACCOUNT_TYPE { LSA_DOMAIN_ACCOUNTS = 0, LSA_FOREIGN_DOMAIN_ACCOUNTS, LSA_LOCAL_DOMAIN_ACCOUNTS, LSA_BUILTIN_DOMAIN_ACCOUNTS, LSA_OTHER_ACCOUNTS, LSA_ACCOUNT_TYPE_SENTINEL } LSA_ACCOUNT_TYPE; #define BAIL_ON_NTSTATUS_ERROR(status) \ do { \ if ((status) != STATUS_SUCCESS) { \ LSA_LOG_DEBUG("Error at %s:%d code: %s " \ "(0x%08x)", \ __FILE__, __LINE__, \ LwNtStatusToName((status)), \ (status)); \ goto error; \ } \ } while (0) #define BAIL_ON_NO_MEMORY(ptr) \ do { \ if ((ptr) == NULL) { \ ntStatus = STATUS_NO_MEMORY; \ goto error; \ } \ } while (0) #define BAIL_ON_INVALID_PTR(ptr) \ do { \ if (ptr == NULL) { \ ntStatus = STATUS_INVALID_PARAMETER; \ LSA_LOG_ERROR("Error: invalid pointer"); \ goto error; \ } \ } while (0) #define BAIL_ON_INVALID_PARAMETER(cond) \ do { \ if (!(cond)) { \ ntStatus = STATUS_INVALID_PARAMETER; \ LSA_LOG_ERROR("Error: invalid parameter"); \ goto error; \ } \ } while (0) #define GLOBAL_DATA_LOCK(locked) \ do { \ int ret = 0; \ ret = pthread_mutex_lock(&gLsaSrvDataMutex); \ if (ret) { \ ntStatus = STATUS_UNSUCCESSFUL; \ goto error; \ \ } else { \ (locked) = 1; \ } \ } while (0) #define GLOBAL_DATA_UNLOCK(locked) \ do { \ int ret = 0; \ if (!locked) break; \ ret = pthread_mutex_unlock(&gLsaSrvDataMutex); \ if (ret && ntStatus == STATUS_SUCCESS) { \ ntStatus = STATUS_UNSUCCESSFUL; \ \ } else { \ (locked) = 0; \ } \ } while (0) #endif /* _LSASRVDEFS_H_ */ /* local variables: mode: c c-basic-offset: 4 indent-tabs-mode: nil tab-width: 4 end: */