2005-02-20 21:20:51 +03:00
/*
Unix SMB / CIFS implementation .
Copyright ( C ) Rafal Szczesniak 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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2005-02-20 21:20:51 +03:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-02-20 21:20:51 +03:00
*/
/*
a composite function for getting user information via samr pipe
*/
# include "includes.h"
# include "libcli/composite/composite.h"
2006-03-18 18:42:57 +03:00
# include "librpc/gen_ndr/security.h"
2006-04-02 16:02:01 +04:00
# include "libcli/security/security.h"
2008-12-24 00:11:21 +03:00
# include "libnet/libnet.h"
2006-03-15 02:35:30 +03:00
# include "librpc/gen_ndr/ndr_samr_c.h"
2005-02-20 21:20:51 +03:00
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
struct userinfo_state {
2005-04-19 07:57:57 +04:00
struct dcerpc_pipe * pipe ;
2006-05-30 01:58:53 +04:00
struct policy_handle domain_handle ;
2005-04-19 07:57:57 +04:00
struct policy_handle user_handle ;
uint16_t level ;
2006-05-30 01:58:53 +04:00
struct samr_LookupNames lookup ;
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
struct samr_OpenUser openuser ;
struct samr_QueryUserInfo queryuserinfo ;
struct samr_Close samrclose ;
union samr_UserInfo * info ;
2005-09-30 02:34:57 +04:00
2005-09-26 15:47:55 +04:00
/* information about the progress */
void ( * monitor_fn ) ( struct monitor_msg * ) ;
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
} ;
2005-02-20 21:20:51 +03:00
2005-04-19 07:57:57 +04:00
2007-05-11 23:10:34 +04:00
static void continue_userinfo_lookup ( struct rpc_request * req ) ;
static void continue_userinfo_openuser ( struct rpc_request * req ) ;
static void continue_userinfo_getuser ( struct rpc_request * req ) ;
static void continue_userinfo_closeuser ( struct rpc_request * req ) ;
2005-04-01 12:14:57 +04:00
/**
2006-05-30 01:58:53 +04:00
* Stage 1 ( optional ) : Look for a username in SAM server .
*/
2007-05-11 23:10:34 +04:00
static void continue_userinfo_lookup ( struct rpc_request * req )
2006-05-30 01:58:53 +04:00
{
2007-05-11 23:10:34 +04:00
struct composite_context * c ;
struct userinfo_state * s ;
struct rpc_request * openuser_req ;
struct monitor_msg msg ;
struct msg_rpc_lookup_name * msg_lookup ;
2007-05-16 18:52:54 +04:00
c = talloc_get_type ( req - > async . private_data , struct composite_context ) ;
2007-05-11 23:10:34 +04:00
s = talloc_get_type ( c - > private_data , struct userinfo_state ) ;
2006-05-30 01:58:53 +04:00
/* receive samr_Lookup reply */
2010-02-27 12:59:14 +03:00
c - > status = dcerpc_samr_LookupNames_recv ( req ) ;
2007-05-11 23:10:34 +04:00
if ( ! composite_is_ok ( c ) ) return ;
2006-09-19 04:25:55 +04:00
/* there could be a problem with name resolving itself */
2007-05-11 23:10:34 +04:00
if ( ! NT_STATUS_IS_OK ( s - > lookup . out . result ) ) {
composite_error ( c , s - > lookup . out . result ) ;
return ;
}
/* issue a monitor message */
if ( s - > monitor_fn ) {
2007-07-26 03:17:02 +04:00
msg . type = mon_SamrLookupName ;
2007-05-11 23:10:34 +04:00
msg_lookup = talloc ( s , struct msg_rpc_lookup_name ) ;
2008-11-05 16:28:17 +03:00
msg_lookup - > rid = s - > lookup . out . rids - > ids ;
msg_lookup - > count = s - > lookup . out . rids - > count ;
2007-05-11 23:10:34 +04:00
msg . data = ( void * ) msg_lookup ;
msg . data_size = sizeof ( * msg_lookup ) ;
s - > monitor_fn ( & msg ) ;
}
2006-05-30 01:58:53 +04:00
/* have we actually got name resolved
- we ' re looking for only one at the moment */
2008-11-05 16:28:17 +03:00
if ( s - > lookup . out . rids - > count = = 0 ) {
2007-05-11 23:10:34 +04:00
composite_error ( c , NT_STATUS_NO_SUCH_USER ) ;
2006-05-30 01:58:53 +04:00
}
/* TODO: find proper status code for more than one rid found */
/* prepare parameters for LookupNames */
s - > openuser . in . domain_handle = & s - > domain_handle ;
s - > openuser . in . access_mask = SEC_FLAG_MAXIMUM_ALLOWED ;
2008-11-05 16:28:17 +03:00
s - > openuser . in . rid = s - > lookup . out . rids - > ids [ 0 ] ;
2006-05-30 01:58:53 +04:00
s - > openuser . out . user_handle = & s - > user_handle ;
/* send request */
2007-05-11 23:10:34 +04:00
openuser_req = dcerpc_samr_OpenUser_send ( s - > pipe , c , & s - > openuser ) ;
if ( composite_nomem ( openuser_req , c ) ) return ;
2006-05-30 01:58:53 +04:00
2007-05-11 23:10:34 +04:00
composite_continue_rpc ( c , openuser_req , continue_userinfo_openuser , c ) ;
2006-05-30 01:58:53 +04:00
}
/**
* Stage 2 : Open user policy handle .
2005-04-01 12:14:57 +04:00
*/
2007-05-11 23:10:34 +04:00
static void continue_userinfo_openuser ( struct rpc_request * req )
2005-02-20 21:20:51 +03:00
{
2007-05-11 23:10:34 +04:00
struct composite_context * c ;
struct userinfo_state * s ;
struct rpc_request * queryuser_req ;
struct monitor_msg msg ;
struct msg_rpc_open_user * msg_open ;
2007-05-16 18:52:54 +04:00
c = talloc_get_type ( req - > async . private_data , struct composite_context ) ;
2007-05-11 23:10:34 +04:00
s = talloc_get_type ( c - > private_data , struct userinfo_state ) ;
2005-02-20 21:20:51 +03:00
/* receive samr_OpenUser reply */
2010-02-27 12:59:14 +03:00
c - > status = dcerpc_samr_OpenUser_recv ( req ) ;
2007-05-11 23:10:34 +04:00
if ( ! composite_is_ok ( c ) ) return ;
if ( ! NT_STATUS_IS_OK ( s - > queryuserinfo . out . result ) ) {
composite_error ( c , s - > queryuserinfo . out . result ) ;
return ;
}
/* issue a monitor message */
if ( s - > monitor_fn ) {
2007-07-26 03:17:02 +04:00
msg . type = mon_SamrOpenUser ;
2007-05-11 23:10:34 +04:00
msg_open = talloc ( s , struct msg_rpc_open_user ) ;
msg_open - > rid = s - > openuser . in . rid ;
msg_open - > access_mask = s - > openuser . in . access_mask ;
msg . data = ( void * ) msg_open ;
msg . data_size = sizeof ( * msg_open ) ;
s - > monitor_fn ( & msg ) ;
}
2006-10-02 09:53:45 +04:00
2005-02-20 21:20:51 +03:00
/* prepare parameters for QueryUserInfo call */
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
s - > queryuserinfo . in . user_handle = & s - > user_handle ;
s - > queryuserinfo . in . level = s - > level ;
2008-11-10 16:42:27 +03:00
s - > queryuserinfo . out . info = talloc ( s , union samr_UserInfo * ) ;
if ( composite_nomem ( s - > queryuserinfo . out . info , c ) ) return ;
2005-02-20 21:20:51 +03:00
/* queue rpc call, set event handling and new state */
2007-05-11 23:10:34 +04:00
queryuser_req = dcerpc_samr_QueryUserInfo_send ( s - > pipe , c , & s - > queryuserinfo ) ;
if ( composite_nomem ( queryuser_req , c ) ) return ;
2005-02-20 21:20:51 +03:00
2007-05-11 23:10:34 +04:00
composite_continue_rpc ( c , queryuser_req , continue_userinfo_getuser , c ) ;
2005-02-20 21:20:51 +03:00
}
2005-04-01 12:14:57 +04:00
/**
2006-05-30 01:58:53 +04:00
* Stage 3 : Get requested user information .
2005-04-01 12:14:57 +04:00
*/
2007-05-11 23:10:34 +04:00
static void continue_userinfo_getuser ( struct rpc_request * req )
2005-02-20 21:20:51 +03:00
{
2007-05-11 23:10:34 +04:00
struct composite_context * c ;
struct userinfo_state * s ;
struct rpc_request * close_req ;
struct monitor_msg msg ;
struct msg_rpc_query_user * msg_query ;
2007-05-16 18:52:54 +04:00
c = talloc_get_type ( req - > async . private_data , struct composite_context ) ;
2007-05-11 23:10:34 +04:00
s = talloc_get_type ( c - > private_data , struct userinfo_state ) ;
2005-02-20 21:20:51 +03:00
/* receive samr_QueryUserInfo reply */
2010-02-27 12:59:14 +03:00
c - > status = dcerpc_samr_QueryUserInfo_recv ( req ) ;
2007-05-11 23:10:34 +04:00
if ( ! composite_is_ok ( c ) ) return ;
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
2006-10-02 09:53:45 +04:00
/* check if queryuser itself went ok */
2007-05-11 23:10:34 +04:00
if ( ! NT_STATUS_IS_OK ( s - > queryuserinfo . out . result ) ) {
composite_error ( c , s - > queryuserinfo . out . result ) ;
return ;
}
2006-10-02 09:53:45 +04:00
2008-11-10 16:42:27 +03:00
s - > info = talloc_steal ( s , * ( s - > queryuserinfo . out . info ) ) ;
2007-05-11 23:10:34 +04:00
/* issue a monitor message */
if ( s - > monitor_fn ) {
2007-07-26 03:17:02 +04:00
msg . type = mon_SamrQueryUser ;
2007-05-11 23:10:34 +04:00
msg_query = talloc ( s , struct msg_rpc_query_user ) ;
msg_query - > level = s - > queryuserinfo . in . level ;
msg . data = ( void * ) msg_query ;
msg . data_size = sizeof ( * msg_query ) ;
s - > monitor_fn ( & msg ) ;
}
2005-02-20 21:20:51 +03:00
/* prepare arguments for Close call */
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
s - > samrclose . in . handle = & s - > user_handle ;
s - > samrclose . out . handle = & s - > user_handle ;
2005-02-20 21:20:51 +03:00
/* queue rpc call, set event handling and new state */
2007-05-11 23:10:34 +04:00
close_req = dcerpc_samr_Close_send ( s - > pipe , c , & s - > samrclose ) ;
if ( composite_nomem ( close_req , c ) ) return ;
2005-02-20 21:20:51 +03:00
2007-05-11 23:10:34 +04:00
composite_continue_rpc ( c , close_req , continue_userinfo_closeuser , c ) ;
2005-02-20 21:20:51 +03:00
}
2005-04-01 12:14:57 +04:00
/**
2006-05-30 01:58:53 +04:00
* Stage 4 : Close policy handle associated with opened user .
2005-04-01 12:14:57 +04:00
*/
2007-05-11 23:10:34 +04:00
static void continue_userinfo_closeuser ( struct rpc_request * req )
2005-02-20 21:20:51 +03:00
{
2007-05-11 23:10:34 +04:00
struct composite_context * c ;
struct userinfo_state * s ;
2005-05-04 23:16:22 +04:00
struct monitor_msg msg ;
2005-07-26 02:57:14 +04:00
struct msg_rpc_close_user * msg_close ;
2006-06-02 02:53:56 +04:00
2007-05-16 18:52:54 +04:00
c = talloc_get_type ( req - > async . private_data , struct composite_context ) ;
2007-05-11 23:10:34 +04:00
s = talloc_get_type ( c - > private_data , struct userinfo_state ) ;
2005-02-20 21:20:51 +03:00
2007-05-11 23:10:34 +04:00
/* receive samr_Close reply */
2010-02-27 12:59:14 +03:00
c - > status = dcerpc_samr_Close_recv ( req ) ;
2007-05-11 23:10:34 +04:00
if ( ! composite_is_ok ( c ) ) return ;
2005-07-26 02:57:14 +04:00
2007-05-11 23:10:34 +04:00
if ( ! NT_STATUS_IS_OK ( s - > samrclose . out . result ) ) {
composite_error ( c , s - > samrclose . out . result ) ;
return ;
}
2005-07-26 02:57:14 +04:00
2007-05-11 23:10:34 +04:00
/* issue a monitor message */
if ( s - > monitor_fn ) {
2007-07-26 03:17:02 +04:00
msg . type = mon_SamrClose ;
2005-07-26 02:57:14 +04:00
msg_close = talloc ( s , struct msg_rpc_close_user ) ;
msg_close - > rid = s - > openuser . in . rid ;
msg . data = ( void * ) msg_close ;
msg . data_size = sizeof ( * msg_close ) ;
2005-02-20 21:20:51 +03:00
2005-09-26 15:47:55 +04:00
s - > monitor_fn ( & msg ) ;
2005-05-04 23:16:22 +04:00
}
2005-02-20 21:20:51 +03:00
2007-05-11 23:10:34 +04:00
composite_done ( c ) ;
2005-02-20 21:20:51 +03:00
}
2005-04-01 12:14:57 +04:00
/**
* Sends asynchronous userinfo request
*
* @ param p dce / rpc call pipe
* @ param io arguments and results of the call
*/
2005-06-11 14:31:33 +04:00
struct composite_context * libnet_rpc_userinfo_send ( struct dcerpc_pipe * p ,
2005-06-19 02:10:32 +04:00
struct libnet_rpc_userinfo * io ,
void ( * monitor ) ( struct monitor_msg * ) )
2005-04-19 07:57:57 +04:00
{
2005-02-20 21:20:51 +03:00
struct composite_context * c ;
struct userinfo_state * s ;
struct dom_sid * sid ;
2007-05-11 23:10:34 +04:00
struct rpc_request * openuser_req , * lookup_req ;
2005-06-19 02:10:32 +04:00
if ( ! p | | ! io ) return NULL ;
2005-02-20 21:20:51 +03:00
2007-05-09 02:04:28 +04:00
c = composite_create ( p , dcerpc_event_context ( p ) ) ;
if ( c = = NULL ) return c ;
2005-02-20 21:20:51 +03:00
s = talloc_zero ( c , struct userinfo_state ) ;
2007-05-09 02:04:28 +04:00
if ( composite_nomem ( s , c ) ) return c ;
c - > private_data = s ;
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
2006-05-30 01:58:53 +04:00
s - > level = io - > in . level ;
s - > pipe = p ;
s - > domain_handle = io - > in . domain_handle ;
s - > monitor_fn = monitor ;
if ( io - > in . sid ) {
sid = dom_sid_parse_talloc ( s , io - > in . sid ) ;
2007-05-09 02:04:28 +04:00
if ( composite_nomem ( sid , c ) ) return c ;
2005-02-20 21:20:51 +03:00
2006-05-30 01:58:53 +04:00
s - > openuser . in . domain_handle = & s - > domain_handle ;
s - > openuser . in . access_mask = SEC_FLAG_MAXIMUM_ALLOWED ;
s - > openuser . in . rid = sid - > sub_auths [ sid - > num_auths - 1 ] ;
s - > openuser . out . user_handle = & s - > user_handle ;
/* send request */
2007-05-11 23:10:34 +04:00
openuser_req = dcerpc_samr_OpenUser_send ( p , c , & s - > openuser ) ;
if ( composite_nomem ( openuser_req , c ) ) return c ;
composite_continue_rpc ( c , openuser_req , continue_userinfo_openuser , c ) ;
2006-05-30 01:58:53 +04:00
} else {
/* preparing parameters to send rpc request */
s - > lookup . in . domain_handle = & s - > domain_handle ;
s - > lookup . in . num_names = 1 ;
s - > lookup . in . names = talloc_array ( s , struct lsa_String , 1 ) ;
if ( composite_nomem ( s - > lookup . in . names , c ) ) return c ;
2008-11-05 16:28:17 +03:00
s - > lookup . out . rids = talloc_zero ( s , struct samr_Ids ) ;
s - > lookup . out . types = talloc_zero ( s , struct samr_Ids ) ;
if ( composite_nomem ( s - > lookup . out . rids , c ) ) return c ;
if ( composite_nomem ( s - > lookup . out . types , c ) ) return c ;
2007-05-12 01:51:53 +04:00
2006-05-30 01:58:53 +04:00
s - > lookup . in . names [ 0 ] . string = talloc_strdup ( s , io - > in . username ) ;
2007-05-12 01:51:53 +04:00
if ( composite_nomem ( s - > lookup . in . names [ 0 ] . string , c ) ) return c ;
2006-05-30 01:58:53 +04:00
/* send request */
2007-05-11 23:10:34 +04:00
lookup_req = dcerpc_samr_LookupNames_send ( p , c , & s - > lookup ) ;
if ( composite_nomem ( lookup_req , c ) ) return c ;
2006-05-30 01:58:53 +04:00
2007-05-11 23:10:34 +04:00
composite_continue_rpc ( c , lookup_req , continue_userinfo_lookup , c ) ;
2006-05-30 01:58:53 +04:00
}
2005-02-20 21:20:51 +03:00
return c ;
}
2005-04-01 12:14:57 +04:00
/**
* Waits for and receives result of asynchronous userinfo call
*
* @ param c composite context returned by asynchronous userinfo call
* @ param mem_ctx memory context of the call
* @ param io pointer to results ( and arguments ) of the call
* @ return nt status code of execution
*/
2005-06-11 14:31:33 +04:00
NTSTATUS libnet_rpc_userinfo_recv ( struct composite_context * c , TALLOC_CTX * mem_ctx ,
2005-06-19 02:10:32 +04:00
struct libnet_rpc_userinfo * io )
2005-02-20 21:20:51 +03:00
{
NTSTATUS status ;
struct userinfo_state * s ;
2005-04-01 12:14:57 +04:00
/* wait for results of sending request */
2005-02-20 21:20:51 +03:00
status = composite_wait ( c ) ;
2005-02-26 14:39:32 +03:00
if ( NT_STATUS_IS_OK ( status ) & & io ) {
2005-09-26 15:47:55 +04:00
s = talloc_get_type ( c - > private_data , struct userinfo_state ) ;
r6165: fixed up the userinfo composite code. Fixes include:
- talloc should always be done in the right context. For example, when creating
the userinfo_state structure, place it inside the composite
structure, not directly on the pipe. If this isn't done then
correct cleanup can't happen on errors (as cleanup destroys the top
level composite context only)
- define private structures like userinfo_state in the userinfo.c
code, not in the public header
- only keep the parameters we need in the state structure. For
example, the domain_handle is only needed in the first call, so we
don't need to keep it around in the state structure, but the level is
needed in later calls, so we need to keep it
- always initialise [out,ref] parameters in RPC calls. The [ref] part
means that the call assumes the pointer it has been given is
valid. If you don't initialise it then you will get a segv on
recv. This is why the code was dying.
- don't use internal strucrure elements like the pipe
pipe->conn->pending outside of the internal rpc implementation. That
is an internal list, trying to use it from external code will cause crashes.
- rpc calls assume that rpc call strucrures remain valid for the
duration of the call. This means you need to keep the structures
(such as "struct samr_Close") in the userinfo_state strucrure,
otherwise it will go out of scope during the async processing
- need to remember to change c->state to SMBCLI_REQUEST_DONE when the
request has finished in the close handler, otherwise it will loop
forever trying to close
Mimir, please look at the diff carefully for more detailed info on the fixes
(This used to be commit 01ea1e7762e214e87e74d6f28d6efeb6cdea9736)
2005-04-01 15:24:52 +04:00
talloc_steal ( mem_ctx , s - > info ) ;
io - > out . info = * s - > info ;
2005-02-20 21:20:51 +03:00
}
2005-04-01 12:14:57 +04:00
/* memory context associated to composite context is no longer needed */
2005-02-20 21:20:51 +03:00
talloc_free ( c ) ;
return status ;
}
2005-04-01 12:14:57 +04:00
/**
* Synchronous version of userinfo call
*
* @ param pipe dce / rpc call pipe
* @ param mem_ctx memory context for the call
* @ param io arguments and results of the call
* @ return nt status code of execution
*/
2005-12-30 19:39:14 +03:00
NTSTATUS libnet_rpc_userinfo ( struct dcerpc_pipe * p ,
2005-06-19 02:10:32 +04:00
TALLOC_CTX * mem_ctx ,
struct libnet_rpc_userinfo * io )
2005-02-20 21:20:51 +03:00
{
2005-12-30 19:39:14 +03:00
struct composite_context * c = libnet_rpc_userinfo_send ( p , io , NULL ) ;
2005-06-11 14:31:33 +04:00
return libnet_rpc_userinfo_recv ( c , mem_ctx , io ) ;
2005-02-20 21:20:51 +03:00
}