mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
2c193fe91a
This should always return a simple structure with no need to consult a DB, so remove the event context, and simplfy to call helper functions that don't look at privilages. Andrew Bartlett
94 lines
2.9 KiB
C
94 lines
2.9 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
Authentication utility functions
|
|
Copyright (C) Andrew Tridgell 1992-1998
|
|
Copyright (C) Andrew Bartlett 2001-2010
|
|
Copyright (C) Jeremy Allison 2000-2001
|
|
Copyright (C) Rafal Szczesniak 2002
|
|
Copyright (C) Stefan Metzmacher 2005
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "auth/auth.h"
|
|
#include "libcli/security/security.h"
|
|
#include "libcli/auth/libcli_auth.h"
|
|
#include "dsdb/samdb/samdb.h"
|
|
#include "auth/credentials/credentials.h"
|
|
#include "param/param.h"
|
|
#include "auth/session_proto.h"
|
|
|
|
_PUBLIC_ struct auth_session_info *anonymous_session(TALLOC_CTX *mem_ctx,
|
|
struct loadparm_context *lp_ctx)
|
|
{
|
|
NTSTATUS nt_status;
|
|
struct auth_session_info *session_info = NULL;
|
|
nt_status = auth_anonymous_session_info(mem_ctx, lp_ctx, &session_info);
|
|
if (!NT_STATUS_IS_OK(nt_status)) {
|
|
return NULL;
|
|
}
|
|
return session_info;
|
|
}
|
|
|
|
_PUBLIC_ NTSTATUS auth_generate_session_info(TALLOC_CTX *mem_ctx,
|
|
struct tevent_context *event_ctx,
|
|
struct loadparm_context *lp_ctx,
|
|
struct auth_serversupplied_info *server_info,
|
|
struct auth_session_info **_session_info)
|
|
{
|
|
struct auth_session_info *session_info;
|
|
NTSTATUS nt_status;
|
|
|
|
session_info = talloc(mem_ctx, struct auth_session_info);
|
|
NT_STATUS_HAVE_NO_MEMORY(session_info);
|
|
|
|
session_info->server_info = talloc_reference(session_info, server_info);
|
|
|
|
/* unless set otherwise, the session key is the user session
|
|
* key from the auth subsystem */
|
|
session_info->session_key = server_info->user_session_key;
|
|
|
|
nt_status = security_token_create(session_info,
|
|
event_ctx,
|
|
lp_ctx,
|
|
server_info->account_sid,
|
|
server_info->primary_group_sid,
|
|
server_info->n_domain_groups,
|
|
server_info->domain_groups,
|
|
server_info->authenticated,
|
|
&session_info->security_token);
|
|
NT_STATUS_NOT_OK_RETURN(nt_status);
|
|
|
|
session_info->credentials = NULL;
|
|
|
|
*_session_info = session_info;
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/**
|
|
* prints a struct auth_session_info security token to debug output.
|
|
*/
|
|
void auth_session_info_debug(int dbg_lev,
|
|
const struct auth_session_info *session_info)
|
|
{
|
|
if (!session_info) {
|
|
DEBUG(dbg_lev, ("Session Info: (NULL)\n"));
|
|
return;
|
|
}
|
|
|
|
security_token_debug(dbg_lev, session_info->security_token);
|
|
}
|
|
|