mirror of
https://github.com/samba-team/samba.git
synced 2025-02-08 05:57:51 +03:00
1406 lines
50 KiB
C
1406 lines
50 KiB
C
/* parser auto-generated by pidl */
|
|
|
|
#include "includes.h"
|
|
#include "librpc/gen_ndr/ndr_wbint.h"
|
|
|
|
#include "librpc/gen_ndr/ndr_lsa.h"
|
|
_PUBLIC_ enum ndr_err_code ndr_push_wbint_userinfo(struct ndr_push *ndr, int ndr_flags, const struct wbint_userinfo *r)
|
|
{
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
NDR_CHECK(ndr_push_align(ndr, 8));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->acct_name));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->full_name));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->homedir));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->shell));
|
|
NDR_CHECK(ndr_push_hyper(ndr, NDR_SCALARS, r->primary_gid));
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, &r->user_sid));
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, &r->group_sid));
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
if (r->acct_name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->acct_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->acct_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->acct_name, ndr_charset_length(r->acct_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
if (r->full_name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->full_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->full_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->full_name, ndr_charset_length(r->full_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
if (r->homedir) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->homedir, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->homedir, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->homedir, ndr_charset_length(r->homedir, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
if (r->shell) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->shell, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->shell, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->shell, ndr_charset_length(r->shell, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ enum ndr_err_code ndr_pull_wbint_userinfo(struct ndr_pull *ndr, int ndr_flags, struct wbint_userinfo *r)
|
|
{
|
|
uint32_t _ptr_acct_name;
|
|
TALLOC_CTX *_mem_save_acct_name_0;
|
|
uint32_t _ptr_full_name;
|
|
TALLOC_CTX *_mem_save_full_name_0;
|
|
uint32_t _ptr_homedir;
|
|
TALLOC_CTX *_mem_save_homedir_0;
|
|
uint32_t _ptr_shell;
|
|
TALLOC_CTX *_mem_save_shell_0;
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
NDR_CHECK(ndr_pull_align(ndr, 8));
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_acct_name));
|
|
if (_ptr_acct_name) {
|
|
NDR_PULL_ALLOC(ndr, r->acct_name);
|
|
} else {
|
|
r->acct_name = NULL;
|
|
}
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_full_name));
|
|
if (_ptr_full_name) {
|
|
NDR_PULL_ALLOC(ndr, r->full_name);
|
|
} else {
|
|
r->full_name = NULL;
|
|
}
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_homedir));
|
|
if (_ptr_homedir) {
|
|
NDR_PULL_ALLOC(ndr, r->homedir);
|
|
} else {
|
|
r->homedir = NULL;
|
|
}
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_shell));
|
|
if (_ptr_shell) {
|
|
NDR_PULL_ALLOC(ndr, r->shell);
|
|
} else {
|
|
r->shell = NULL;
|
|
}
|
|
NDR_CHECK(ndr_pull_hyper(ndr, NDR_SCALARS, &r->primary_gid));
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, &r->user_sid));
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, &r->group_sid));
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
if (r->acct_name) {
|
|
_mem_save_acct_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->acct_name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->acct_name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->acct_name));
|
|
if (ndr_get_array_length(ndr, &r->acct_name) > ndr_get_array_size(ndr, &r->acct_name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->acct_name), ndr_get_array_length(ndr, &r->acct_name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->acct_name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->acct_name, ndr_get_array_length(ndr, &r->acct_name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_acct_name_0, 0);
|
|
}
|
|
if (r->full_name) {
|
|
_mem_save_full_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->full_name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->full_name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->full_name));
|
|
if (ndr_get_array_length(ndr, &r->full_name) > ndr_get_array_size(ndr, &r->full_name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->full_name), ndr_get_array_length(ndr, &r->full_name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->full_name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->full_name, ndr_get_array_length(ndr, &r->full_name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_full_name_0, 0);
|
|
}
|
|
if (r->homedir) {
|
|
_mem_save_homedir_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->homedir, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->homedir));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->homedir));
|
|
if (ndr_get_array_length(ndr, &r->homedir) > ndr_get_array_size(ndr, &r->homedir)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->homedir), ndr_get_array_length(ndr, &r->homedir));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->homedir), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->homedir, ndr_get_array_length(ndr, &r->homedir), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_homedir_0, 0);
|
|
}
|
|
if (r->shell) {
|
|
_mem_save_shell_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->shell, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->shell));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->shell));
|
|
if (ndr_get_array_length(ndr, &r->shell) > ndr_get_array_size(ndr, &r->shell)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->shell), ndr_get_array_length(ndr, &r->shell));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->shell), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->shell, ndr_get_array_length(ndr, &r->shell), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_shell_0, 0);
|
|
}
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_userinfo(struct ndr_print *ndr, const char *name, const struct wbint_userinfo *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_userinfo");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "acct_name", r->acct_name);
|
|
ndr->depth++;
|
|
if (r->acct_name) {
|
|
ndr_print_string(ndr, "acct_name", r->acct_name);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "full_name", r->full_name);
|
|
ndr->depth++;
|
|
if (r->full_name) {
|
|
ndr_print_string(ndr, "full_name", r->full_name);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "homedir", r->homedir);
|
|
ndr->depth++;
|
|
if (r->homedir) {
|
|
ndr_print_string(ndr, "homedir", r->homedir);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "shell", r->shell);
|
|
ndr->depth++;
|
|
if (r->shell) {
|
|
ndr_print_string(ndr, "shell", r->shell);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_hyper(ndr, "primary_gid", r->primary_gid);
|
|
ndr_print_dom_sid(ndr, "user_sid", &r->user_sid);
|
|
ndr_print_dom_sid(ndr, "group_sid", &r->group_sid);
|
|
ndr->depth--;
|
|
}
|
|
|
|
_PUBLIC_ enum ndr_err_code ndr_push_wbint_SidArray(struct ndr_push *ndr, int ndr_flags, const struct wbint_SidArray *r)
|
|
{
|
|
uint32_t cntr_sids_0;
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->num_sids));
|
|
NDR_CHECK(ndr_push_align(ndr, 4));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->num_sids));
|
|
for (cntr_sids_0 = 0; cntr_sids_0 < r->num_sids; cntr_sids_0++) {
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, &r->sids[cntr_sids_0]));
|
|
}
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ enum ndr_err_code ndr_pull_wbint_SidArray(struct ndr_pull *ndr, int ndr_flags, struct wbint_SidArray *r)
|
|
{
|
|
uint32_t cntr_sids_0;
|
|
TALLOC_CTX *_mem_save_sids_0;
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->sids));
|
|
NDR_CHECK(ndr_pull_align(ndr, 4));
|
|
NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->num_sids));
|
|
NDR_PULL_ALLOC_N(ndr, r->sids, ndr_get_array_size(ndr, &r->sids));
|
|
_mem_save_sids_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->sids, 0);
|
|
for (cntr_sids_0 = 0; cntr_sids_0 < r->num_sids; cntr_sids_0++) {
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, &r->sids[cntr_sids_0]));
|
|
}
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sids_0, 0);
|
|
if (r->sids) {
|
|
NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->sids, r->num_sids));
|
|
}
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_SidArray(struct ndr_print *ndr, const char *name, const struct wbint_SidArray *r)
|
|
{
|
|
uint32_t cntr_sids_0;
|
|
ndr_print_struct(ndr, name, "wbint_SidArray");
|
|
ndr->depth++;
|
|
ndr_print_uint32(ndr, "num_sids", r->num_sids);
|
|
ndr->print(ndr, "%s: ARRAY(%d)", "sids", (int)r->num_sids);
|
|
ndr->depth++;
|
|
for (cntr_sids_0=0;cntr_sids_0<r->num_sids;cntr_sids_0++) {
|
|
char *idx_0=NULL;
|
|
if (asprintf(&idx_0, "[%d]", cntr_sids_0) != -1) {
|
|
ndr_print_dom_sid(ndr, "sids", &r->sids[cntr_sids_0]);
|
|
free(idx_0);
|
|
}
|
|
}
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
|
|
_PUBLIC_ enum ndr_err_code ndr_push_wbint_RidArray(struct ndr_push *ndr, int ndr_flags, const struct wbint_RidArray *r)
|
|
{
|
|
uint32_t cntr_rids_0;
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->num_rids));
|
|
NDR_CHECK(ndr_push_align(ndr, 4));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->num_rids));
|
|
for (cntr_rids_0 = 0; cntr_rids_0 < r->num_rids; cntr_rids_0++) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->rids[cntr_rids_0]));
|
|
}
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ enum ndr_err_code ndr_pull_wbint_RidArray(struct ndr_pull *ndr, int ndr_flags, struct wbint_RidArray *r)
|
|
{
|
|
uint32_t cntr_rids_0;
|
|
TALLOC_CTX *_mem_save_rids_0;
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->rids));
|
|
NDR_CHECK(ndr_pull_align(ndr, 4));
|
|
NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->num_rids));
|
|
NDR_PULL_ALLOC_N(ndr, r->rids, ndr_get_array_size(ndr, &r->rids));
|
|
_mem_save_rids_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->rids, 0);
|
|
for (cntr_rids_0 = 0; cntr_rids_0 < r->num_rids; cntr_rids_0++) {
|
|
NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->rids[cntr_rids_0]));
|
|
}
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_rids_0, 0);
|
|
if (r->rids) {
|
|
NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->rids, r->num_rids));
|
|
}
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_RidArray(struct ndr_print *ndr, const char *name, const struct wbint_RidArray *r)
|
|
{
|
|
uint32_t cntr_rids_0;
|
|
ndr_print_struct(ndr, name, "wbint_RidArray");
|
|
ndr->depth++;
|
|
ndr_print_uint32(ndr, "num_rids", r->num_rids);
|
|
ndr->print(ndr, "%s: ARRAY(%d)", "rids", (int)r->num_rids);
|
|
ndr->depth++;
|
|
for (cntr_rids_0=0;cntr_rids_0<r->num_rids;cntr_rids_0++) {
|
|
char *idx_0=NULL;
|
|
if (asprintf(&idx_0, "[%d]", cntr_rids_0) != -1) {
|
|
ndr_print_uint32(ndr, "rids", r->rids[cntr_rids_0]);
|
|
free(idx_0);
|
|
}
|
|
}
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_Ping(struct ndr_push *ndr, int flags, const struct wbint_Ping *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.in_data));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.out_data == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.out_data));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_Ping(struct ndr_pull *ndr, int flags, struct wbint_Ping *r)
|
|
{
|
|
TALLOC_CTX *_mem_save_out_data_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.in_data));
|
|
NDR_PULL_ALLOC(ndr, r->out.out_data);
|
|
ZERO_STRUCTP(r->out.out_data);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.out_data);
|
|
}
|
|
_mem_save_out_data_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.out_data, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.out_data));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_out_data_0, LIBNDR_FLAG_REF_ALLOC);
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_Ping(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Ping *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_Ping");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_Ping");
|
|
ndr->depth++;
|
|
ndr_print_uint32(ndr, "in_data", r->in.in_data);
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_Ping");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "out_data", r->out.out_data);
|
|
ndr->depth++;
|
|
ndr_print_uint32(ndr, "out_data", *r->out.out_data);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_LookupSid(struct ndr_push *ndr, int flags, const struct wbint_LookupSid *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
if (r->in.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.type == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_lsa_SidType(ndr, NDR_SCALARS, *r->out.type));
|
|
if (r->out.domain == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domain));
|
|
if (*r->out.domain) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.domain, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.domain, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.domain, ndr_charset_length(*r->out.domain, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
if (r->out.name == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.name));
|
|
if (*r->out.name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.name, ndr_charset_length(*r->out.name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_LookupSid(struct ndr_pull *ndr, int flags, struct wbint_LookupSid *r)
|
|
{
|
|
uint32_t _ptr_domain;
|
|
uint32_t _ptr_name;
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
TALLOC_CTX *_mem_save_type_0;
|
|
TALLOC_CTX *_mem_save_domain_0;
|
|
TALLOC_CTX *_mem_save_domain_1;
|
|
TALLOC_CTX *_mem_save_name_0;
|
|
TALLOC_CTX *_mem_save_name_1;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->in.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_PULL_ALLOC(ndr, r->out.type);
|
|
ZERO_STRUCTP(r->out.type);
|
|
NDR_PULL_ALLOC(ndr, r->out.domain);
|
|
ZERO_STRUCTP(r->out.domain);
|
|
NDR_PULL_ALLOC(ndr, r->out.name);
|
|
ZERO_STRUCTP(r->out.name);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.type);
|
|
}
|
|
_mem_save_type_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.type, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_lsa_SidType(ndr, NDR_SCALARS, r->out.type));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_type_0, LIBNDR_FLAG_REF_ALLOC);
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.domain);
|
|
}
|
|
_mem_save_domain_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.domain, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_domain));
|
|
if (_ptr_domain) {
|
|
NDR_PULL_ALLOC(ndr, *r->out.domain);
|
|
} else {
|
|
*r->out.domain = NULL;
|
|
}
|
|
if (*r->out.domain) {
|
|
_mem_save_domain_1 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, *r->out.domain, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, r->out.domain));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, r->out.domain));
|
|
if (ndr_get_array_length(ndr, r->out.domain) > ndr_get_array_size(ndr, r->out.domain)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.domain), ndr_get_array_length(ndr, r->out.domain));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.domain), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.domain, ndr_get_array_length(ndr, r->out.domain), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_domain_1, 0);
|
|
}
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_domain_0, LIBNDR_FLAG_REF_ALLOC);
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.name);
|
|
}
|
|
_mem_save_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.name, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_name));
|
|
if (_ptr_name) {
|
|
NDR_PULL_ALLOC(ndr, *r->out.name);
|
|
} else {
|
|
*r->out.name = NULL;
|
|
}
|
|
if (*r->out.name) {
|
|
_mem_save_name_1 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, *r->out.name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, r->out.name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, r->out.name));
|
|
if (ndr_get_array_length(ndr, r->out.name) > ndr_get_array_size(ndr, r->out.name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.name), ndr_get_array_length(ndr, r->out.name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.name, ndr_get_array_length(ndr, r->out.name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_name_1, 0);
|
|
}
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_name_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_LookupSid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_LookupSid *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_LookupSid");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_LookupSid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sid", r->in.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->in.sid);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_LookupSid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "type", r->out.type);
|
|
ndr->depth++;
|
|
ndr_print_lsa_SidType(ndr, "type", *r->out.type);
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "domain", r->out.domain);
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "domain", *r->out.domain);
|
|
ndr->depth++;
|
|
if (*r->out.domain) {
|
|
ndr_print_string(ndr, "domain", *r->out.domain);
|
|
}
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "name", r->out.name);
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "name", *r->out.name);
|
|
ndr->depth++;
|
|
if (*r->out.name) {
|
|
ndr_print_string(ndr, "name", *r->out.name);
|
|
}
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_LookupName(struct ndr_push *ndr, int flags, const struct wbint_LookupName *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
if (r->in.domain == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.domain, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.domain, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.domain, ndr_charset_length(r->in.domain, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
if (r->in.name == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.name, ndr_charset_length(r->in.name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.flags));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.type == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_lsa_SidType(ndr, NDR_SCALARS, *r->out.type));
|
|
if (r->out.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->out.sid));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_LookupName(struct ndr_pull *ndr, int flags, struct wbint_LookupName *r)
|
|
{
|
|
TALLOC_CTX *_mem_save_type_0;
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->in.domain));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->in.domain));
|
|
if (ndr_get_array_length(ndr, &r->in.domain) > ndr_get_array_size(ndr, &r->in.domain)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.domain), ndr_get_array_length(ndr, &r->in.domain));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.domain), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.domain, ndr_get_array_length(ndr, &r->in.domain), sizeof(uint8_t), CH_UTF8));
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->in.name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->in.name));
|
|
if (ndr_get_array_length(ndr, &r->in.name) > ndr_get_array_size(ndr, &r->in.name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.name), ndr_get_array_length(ndr, &r->in.name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.name, ndr_get_array_length(ndr, &r->in.name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.flags));
|
|
NDR_PULL_ALLOC(ndr, r->out.type);
|
|
ZERO_STRUCTP(r->out.type);
|
|
NDR_PULL_ALLOC(ndr, r->out.sid);
|
|
ZERO_STRUCTP(r->out.sid);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.type);
|
|
}
|
|
_mem_save_type_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.type, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_lsa_SidType(ndr, NDR_SCALARS, r->out.type));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_type_0, LIBNDR_FLAG_REF_ALLOC);
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->out.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_LookupName(struct ndr_print *ndr, const char *name, int flags, const struct wbint_LookupName *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_LookupName");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_LookupName");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "domain", r->in.domain);
|
|
ndr->depth++;
|
|
ndr_print_string(ndr, "domain", r->in.domain);
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "name", r->in.name);
|
|
ndr->depth++;
|
|
ndr_print_string(ndr, "name", r->in.name);
|
|
ndr->depth--;
|
|
ndr_print_uint32(ndr, "flags", r->in.flags);
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_LookupName");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "type", r->out.type);
|
|
ndr->depth++;
|
|
ndr_print_lsa_SidType(ndr, "type", *r->out.type);
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "sid", r->out.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->out.sid);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_Sid2Uid(struct ndr_push *ndr, int flags, const struct wbint_Sid2Uid *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.dom_name));
|
|
if (r->in.dom_name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.dom_name, ndr_charset_length(r->in.dom_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
if (r->in.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.uid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_hyper(ndr, NDR_SCALARS, *r->out.uid));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_Sid2Uid(struct ndr_pull *ndr, int flags, struct wbint_Sid2Uid *r)
|
|
{
|
|
uint32_t _ptr_dom_name;
|
|
TALLOC_CTX *_mem_save_dom_name_0;
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
TALLOC_CTX *_mem_save_uid_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_dom_name));
|
|
if (_ptr_dom_name) {
|
|
NDR_PULL_ALLOC(ndr, r->in.dom_name);
|
|
} else {
|
|
r->in.dom_name = NULL;
|
|
}
|
|
if (r->in.dom_name) {
|
|
_mem_save_dom_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.dom_name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->in.dom_name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->in.dom_name));
|
|
if (ndr_get_array_length(ndr, &r->in.dom_name) > ndr_get_array_size(ndr, &r->in.dom_name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.dom_name), ndr_get_array_length(ndr, &r->in.dom_name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.dom_name, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_dom_name_0, 0);
|
|
}
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->in.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_PULL_ALLOC(ndr, r->out.uid);
|
|
ZERO_STRUCTP(r->out.uid);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.uid);
|
|
}
|
|
_mem_save_uid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.uid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_hyper(ndr, NDR_SCALARS, r->out.uid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_uid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_Sid2Uid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Sid2Uid *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_Sid2Uid");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_Sid2Uid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "dom_name", r->in.dom_name);
|
|
ndr->depth++;
|
|
if (r->in.dom_name) {
|
|
ndr_print_string(ndr, "dom_name", r->in.dom_name);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "sid", r->in.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->in.sid);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_Sid2Uid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "uid", r->out.uid);
|
|
ndr->depth++;
|
|
ndr_print_hyper(ndr, "uid", *r->out.uid);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_Sid2Gid(struct ndr_push *ndr, int flags, const struct wbint_Sid2Gid *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.dom_name));
|
|
if (r->in.dom_name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.dom_name, ndr_charset_length(r->in.dom_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
if (r->in.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.gid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_hyper(ndr, NDR_SCALARS, *r->out.gid));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_Sid2Gid(struct ndr_pull *ndr, int flags, struct wbint_Sid2Gid *r)
|
|
{
|
|
uint32_t _ptr_dom_name;
|
|
TALLOC_CTX *_mem_save_dom_name_0;
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
TALLOC_CTX *_mem_save_gid_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_dom_name));
|
|
if (_ptr_dom_name) {
|
|
NDR_PULL_ALLOC(ndr, r->in.dom_name);
|
|
} else {
|
|
r->in.dom_name = NULL;
|
|
}
|
|
if (r->in.dom_name) {
|
|
_mem_save_dom_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.dom_name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->in.dom_name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->in.dom_name));
|
|
if (ndr_get_array_length(ndr, &r->in.dom_name) > ndr_get_array_size(ndr, &r->in.dom_name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.dom_name), ndr_get_array_length(ndr, &r->in.dom_name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.dom_name, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_dom_name_0, 0);
|
|
}
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->in.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_PULL_ALLOC(ndr, r->out.gid);
|
|
ZERO_STRUCTP(r->out.gid);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.gid);
|
|
}
|
|
_mem_save_gid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.gid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_hyper(ndr, NDR_SCALARS, r->out.gid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_gid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_Sid2Gid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Sid2Gid *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_Sid2Gid");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_Sid2Gid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "dom_name", r->in.dom_name);
|
|
ndr->depth++;
|
|
if (r->in.dom_name) {
|
|
ndr_print_string(ndr, "dom_name", r->in.dom_name);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "sid", r->in.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->in.sid);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_Sid2Gid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "gid", r->out.gid);
|
|
ndr->depth++;
|
|
ndr_print_hyper(ndr, "gid", *r->out.gid);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_Uid2Sid(struct ndr_push *ndr, int flags, const struct wbint_Uid2Sid *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.dom_name));
|
|
if (r->in.dom_name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.dom_name, ndr_charset_length(r->in.dom_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
NDR_CHECK(ndr_push_hyper(ndr, NDR_SCALARS, r->in.uid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->out.sid));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_Uid2Sid(struct ndr_pull *ndr, int flags, struct wbint_Uid2Sid *r)
|
|
{
|
|
uint32_t _ptr_dom_name;
|
|
TALLOC_CTX *_mem_save_dom_name_0;
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_dom_name));
|
|
if (_ptr_dom_name) {
|
|
NDR_PULL_ALLOC(ndr, r->in.dom_name);
|
|
} else {
|
|
r->in.dom_name = NULL;
|
|
}
|
|
if (r->in.dom_name) {
|
|
_mem_save_dom_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.dom_name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->in.dom_name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->in.dom_name));
|
|
if (ndr_get_array_length(ndr, &r->in.dom_name) > ndr_get_array_size(ndr, &r->in.dom_name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.dom_name), ndr_get_array_length(ndr, &r->in.dom_name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.dom_name, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_dom_name_0, 0);
|
|
}
|
|
NDR_CHECK(ndr_pull_hyper(ndr, NDR_SCALARS, &r->in.uid));
|
|
NDR_PULL_ALLOC(ndr, r->out.sid);
|
|
ZERO_STRUCTP(r->out.sid);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->out.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_Uid2Sid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Uid2Sid *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_Uid2Sid");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_Uid2Sid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "dom_name", r->in.dom_name);
|
|
ndr->depth++;
|
|
if (r->in.dom_name) {
|
|
ndr_print_string(ndr, "dom_name", r->in.dom_name);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_hyper(ndr, "uid", r->in.uid);
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_Uid2Sid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sid", r->out.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->out.sid);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_Gid2Sid(struct ndr_push *ndr, int flags, const struct wbint_Gid2Sid *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.dom_name));
|
|
if (r->in.dom_name) {
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
|
|
NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.dom_name, ndr_charset_length(r->in.dom_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
|
|
}
|
|
NDR_CHECK(ndr_push_hyper(ndr, NDR_SCALARS, r->in.gid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->out.sid));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_Gid2Sid(struct ndr_pull *ndr, int flags, struct wbint_Gid2Sid *r)
|
|
{
|
|
uint32_t _ptr_dom_name;
|
|
TALLOC_CTX *_mem_save_dom_name_0;
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_dom_name));
|
|
if (_ptr_dom_name) {
|
|
NDR_PULL_ALLOC(ndr, r->in.dom_name);
|
|
} else {
|
|
r->in.dom_name = NULL;
|
|
}
|
|
if (r->in.dom_name) {
|
|
_mem_save_dom_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.dom_name, 0);
|
|
NDR_CHECK(ndr_pull_array_size(ndr, &r->in.dom_name));
|
|
NDR_CHECK(ndr_pull_array_length(ndr, &r->in.dom_name));
|
|
if (ndr_get_array_length(ndr, &r->in.dom_name) > ndr_get_array_size(ndr, &r->in.dom_name)) {
|
|
return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.dom_name), ndr_get_array_length(ndr, &r->in.dom_name));
|
|
}
|
|
NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t)));
|
|
NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.dom_name, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t), CH_UTF8));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_dom_name_0, 0);
|
|
}
|
|
NDR_CHECK(ndr_pull_hyper(ndr, NDR_SCALARS, &r->in.gid));
|
|
NDR_PULL_ALLOC(ndr, r->out.sid);
|
|
ZERO_STRUCTP(r->out.sid);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->out.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_Gid2Sid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Gid2Sid *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_Gid2Sid");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_Gid2Sid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "dom_name", r->in.dom_name);
|
|
ndr->depth++;
|
|
if (r->in.dom_name) {
|
|
ndr_print_string(ndr, "dom_name", r->in.dom_name);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_hyper(ndr, "gid", r->in.gid);
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_Gid2Sid");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sid", r->out.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->out.sid);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_QueryUser(struct ndr_push *ndr, int flags, const struct wbint_QueryUser *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
if (r->in.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.info == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_wbint_userinfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_QueryUser(struct ndr_pull *ndr, int flags, struct wbint_QueryUser *r)
|
|
{
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
TALLOC_CTX *_mem_save_info_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->in.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_PULL_ALLOC(ndr, r->out.info);
|
|
ZERO_STRUCTP(r->out.info);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.info);
|
|
}
|
|
_mem_save_info_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_wbint_userinfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_QueryUser(struct ndr_print *ndr, const char *name, int flags, const struct wbint_QueryUser *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_QueryUser");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_QueryUser");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sid", r->in.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->in.sid);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_QueryUser");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "info", r->out.info);
|
|
ndr->depth++;
|
|
ndr_print_wbint_userinfo(ndr, "info", r->out.info);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_LookupUserAliases(struct ndr_push *ndr, int flags, const struct wbint_LookupUserAliases *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
if (r->in.sids == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_wbint_SidArray(ndr, NDR_SCALARS, r->in.sids));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.rids == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_wbint_RidArray(ndr, NDR_SCALARS, r->out.rids));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_LookupUserAliases(struct ndr_pull *ndr, int flags, struct wbint_LookupUserAliases *r)
|
|
{
|
|
TALLOC_CTX *_mem_save_sids_0;
|
|
TALLOC_CTX *_mem_save_rids_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->in.sids);
|
|
}
|
|
_mem_save_sids_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.sids, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_wbint_SidArray(ndr, NDR_SCALARS, r->in.sids));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sids_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_PULL_ALLOC(ndr, r->out.rids);
|
|
ZERO_STRUCTP(r->out.rids);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.rids);
|
|
}
|
|
_mem_save_rids_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.rids, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_wbint_RidArray(ndr, NDR_SCALARS, r->out.rids));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_rids_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_LookupUserAliases(struct ndr_print *ndr, const char *name, int flags, const struct wbint_LookupUserAliases *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_LookupUserAliases");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_LookupUserAliases");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sids", r->in.sids);
|
|
ndr->depth++;
|
|
ndr_print_wbint_SidArray(ndr, "sids", r->in.sids);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_LookupUserAliases");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "rids", r->out.rids);
|
|
ndr->depth++;
|
|
ndr_print_wbint_RidArray(ndr, "rids", r->out.rids);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_push_wbint_LookupUserGroups(struct ndr_push *ndr, int flags, const struct wbint_LookupUserGroups *r)
|
|
{
|
|
if (flags & NDR_IN) {
|
|
if (r->in.sid == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (r->out.sids == NULL) {
|
|
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
|
}
|
|
NDR_CHECK(ndr_push_wbint_SidArray(ndr, NDR_SCALARS, r->out.sids));
|
|
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
static enum ndr_err_code ndr_pull_wbint_LookupUserGroups(struct ndr_pull *ndr, int flags, struct wbint_LookupUserGroups *r)
|
|
{
|
|
TALLOC_CTX *_mem_save_sid_0;
|
|
TALLOC_CTX *_mem_save_sids_0;
|
|
if (flags & NDR_IN) {
|
|
ZERO_STRUCT(r->out);
|
|
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->in.sid);
|
|
}
|
|
_mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->in.sid, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->in.sid));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_PULL_ALLOC(ndr, r->out.sids);
|
|
ZERO_STRUCTP(r->out.sids);
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
|
NDR_PULL_ALLOC(ndr, r->out.sids);
|
|
}
|
|
_mem_save_sids_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
|
NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_wbint_SidArray(ndr, NDR_SCALARS, r->out.sids));
|
|
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sids_0, LIBNDR_FLAG_REF_ALLOC);
|
|
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ void ndr_print_wbint_LookupUserGroups(struct ndr_print *ndr, const char *name, int flags, const struct wbint_LookupUserGroups *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "wbint_LookupUserGroups");
|
|
ndr->depth++;
|
|
if (flags & NDR_SET_VALUES) {
|
|
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
|
|
}
|
|
if (flags & NDR_IN) {
|
|
ndr_print_struct(ndr, "in", "wbint_LookupUserGroups");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sid", r->in.sid);
|
|
ndr->depth++;
|
|
ndr_print_dom_sid(ndr, "sid", r->in.sid);
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
}
|
|
if (flags & NDR_OUT) {
|
|
ndr_print_struct(ndr, "out", "wbint_LookupUserGroups");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "sids", r->out.sids);
|
|
ndr->depth++;
|
|
ndr_print_wbint_SidArray(ndr, "sids", r->out.sids);
|
|
ndr->depth--;
|
|
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
|
ndr->depth--;
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
static const struct ndr_interface_call wbint_calls[] = {
|
|
{
|
|
"wbint_Ping",
|
|
sizeof(struct wbint_Ping),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_Ping,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_Ping,
|
|
(ndr_print_function_t) ndr_print_wbint_Ping,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_LookupSid",
|
|
sizeof(struct wbint_LookupSid),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_LookupSid,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_LookupSid,
|
|
(ndr_print_function_t) ndr_print_wbint_LookupSid,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_LookupName",
|
|
sizeof(struct wbint_LookupName),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_LookupName,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_LookupName,
|
|
(ndr_print_function_t) ndr_print_wbint_LookupName,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_Sid2Uid",
|
|
sizeof(struct wbint_Sid2Uid),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_Sid2Uid,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_Sid2Uid,
|
|
(ndr_print_function_t) ndr_print_wbint_Sid2Uid,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_Sid2Gid",
|
|
sizeof(struct wbint_Sid2Gid),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_Sid2Gid,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_Sid2Gid,
|
|
(ndr_print_function_t) ndr_print_wbint_Sid2Gid,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_Uid2Sid",
|
|
sizeof(struct wbint_Uid2Sid),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_Uid2Sid,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_Uid2Sid,
|
|
(ndr_print_function_t) ndr_print_wbint_Uid2Sid,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_Gid2Sid",
|
|
sizeof(struct wbint_Gid2Sid),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_Gid2Sid,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_Gid2Sid,
|
|
(ndr_print_function_t) ndr_print_wbint_Gid2Sid,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_QueryUser",
|
|
sizeof(struct wbint_QueryUser),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_QueryUser,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_QueryUser,
|
|
(ndr_print_function_t) ndr_print_wbint_QueryUser,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_LookupUserAliases",
|
|
sizeof(struct wbint_LookupUserAliases),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_LookupUserAliases,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_LookupUserAliases,
|
|
(ndr_print_function_t) ndr_print_wbint_LookupUserAliases,
|
|
false,
|
|
},
|
|
{
|
|
"wbint_LookupUserGroups",
|
|
sizeof(struct wbint_LookupUserGroups),
|
|
(ndr_push_flags_fn_t) ndr_push_wbint_LookupUserGroups,
|
|
(ndr_pull_flags_fn_t) ndr_pull_wbint_LookupUserGroups,
|
|
(ndr_print_function_t) ndr_print_wbint_LookupUserGroups,
|
|
false,
|
|
},
|
|
{ NULL, 0, NULL, NULL, NULL, false }
|
|
};
|
|
|
|
static const char * const wbint_endpoint_strings[] = {
|
|
"ncalrpc:",
|
|
};
|
|
|
|
static const struct ndr_interface_string_array wbint_endpoints = {
|
|
.count = 1,
|
|
.names = wbint_endpoint_strings
|
|
};
|
|
|
|
static const char * const wbint_authservice_strings[] = {
|
|
"host",
|
|
};
|
|
|
|
static const struct ndr_interface_string_array wbint_authservices = {
|
|
.count = 1,
|
|
.names = wbint_authservice_strings
|
|
};
|
|
|
|
|
|
const struct ndr_interface_table ndr_table_wbint = {
|
|
.name = "wbint",
|
|
.syntax_id = {
|
|
{0xbf09192c,0xed60,0x4928,{0x9d,0xff},{0xd0,0xd7,0xbc,0xb0,0x3e,0xd8}},
|
|
NDR_WBINT_VERSION
|
|
},
|
|
.helpstring = NDR_WBINT_HELPSTRING,
|
|
.num_calls = 10,
|
|
.calls = wbint_calls,
|
|
.endpoints = &wbint_endpoints,
|
|
.authservices = &wbint_authservices
|
|
};
|
|
|