mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
bf1dba03b2
This will allow a transformation of auth3_session_info into auth_session_info by substitution. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
108 lines
2.8 KiB
Plaintext
108 lines
2.8 KiB
Plaintext
#include "idl_types.h"
|
|
|
|
/*
|
|
Authentication IDL structures
|
|
|
|
These are NOT public network structures, but it is helpful to define
|
|
these things in IDL. They may change without ABI breakage or
|
|
warning.
|
|
|
|
*/
|
|
|
|
import "misc.idl", "security.idl", "lsa.idl", "krb5pac.idl";
|
|
[
|
|
pyhelper("librpc/ndr/py_auth.c"),
|
|
helper("../librpc/ndr/ndr_auth.h"),
|
|
helpstring("internal Samba authentication structures")
|
|
]
|
|
|
|
interface auth
|
|
{
|
|
typedef [public] enum {
|
|
SEC_AUTH_METHOD_UNAUTHENTICATED = 0,
|
|
SEC_AUTH_METHOD_NTLM = 1,
|
|
SEC_AUTH_METHOD_KERBEROS = 2
|
|
} auth_method;
|
|
|
|
/* This is the parts of the session_info that don't change
|
|
* during local privilage and group manipulations */
|
|
typedef [public] struct {
|
|
utf8string account_name;
|
|
utf8string domain_name;
|
|
|
|
utf8string full_name;
|
|
utf8string logon_script;
|
|
utf8string profile_path;
|
|
utf8string home_directory;
|
|
utf8string home_drive;
|
|
utf8string logon_server;
|
|
|
|
NTTIME last_logon;
|
|
NTTIME last_logoff;
|
|
NTTIME acct_expiry;
|
|
NTTIME last_password_change;
|
|
NTTIME allow_password_change;
|
|
NTTIME force_password_change;
|
|
|
|
uint16 logon_count;
|
|
uint16 bad_password_count;
|
|
|
|
uint32 acct_flags;
|
|
|
|
uint8 authenticated;
|
|
} auth_user_info;
|
|
|
|
/* This information is preserved only to assist torture tests */
|
|
typedef [public] struct {
|
|
/* Number SIDs from the DC netlogon validation info */
|
|
uint32 num_dc_sids;
|
|
[size_is(num_dc_sids)] dom_sid dc_sids[*];
|
|
PAC_SIGNATURE_DATA *pac_srv_sig;
|
|
PAC_SIGNATURE_DATA *pac_kdc_sig;
|
|
} auth_user_info_torture;
|
|
|
|
typedef [public] struct {
|
|
/* These match exactly the values from the
|
|
* auth_serversupplied_info, but should be changed to
|
|
* checks involving just the SIDs */
|
|
boolean8 guest;
|
|
boolean8 system;
|
|
|
|
utf8string unix_name;
|
|
|
|
/*
|
|
* For performance reasons we keep an alpha_strcpy-sanitized version
|
|
* of the username around as long as the global variable current_user
|
|
* still exists. If we did not do keep this, we'd have to call
|
|
* alpha_strcpy whenever we do a become_user(), potentially on every
|
|
* smb request. See set_current_user_info in source3.
|
|
*/
|
|
utf8string sanitized_username;
|
|
} auth_user_info_unix;
|
|
|
|
/* This is the interim product of the auth subsystem, before
|
|
* privileges and local groups are handled */
|
|
typedef [public] struct {
|
|
uint32 num_sids;
|
|
[size_is(num_sids)] dom_sid sids[*];
|
|
auth_user_info *info;
|
|
DATA_BLOB user_session_key;
|
|
DATA_BLOB lm_session_key;
|
|
} auth_user_info_dc;
|
|
|
|
typedef [public] struct {
|
|
security_token *security_token;
|
|
security_unix_token *unix_token;
|
|
auth_user_info *info;
|
|
auth_user_info_unix *unix_info;
|
|
[value(NULL), ignore] auth_user_info_torture *torture;
|
|
DATA_BLOB session_key;
|
|
[value(NULL), ignore] cli_credentials *credentials;
|
|
} auth_session_info;
|
|
|
|
typedef [public] struct {
|
|
auth_session_info *session_info;
|
|
DATA_BLOB exported_gssapi_credentials;
|
|
} auth_session_info_transport;
|
|
}
|