1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-15 23:24:37 +03:00
Luke Leighton 0ce128e355 delineation between smb and msrpc more marked. smbd now constructs
pdus, and then feeds them over either a "local" function call or a "remote"
function call to an msrpc service.  the "remote" msrpc daemon, on the
other side of a unix socket, then calls the same "local" function that
smbd would, if the msrpc service were being run from inside smbd.

this allows a transition from local msrpc services (inside the same smbd
process) to remote (over a unix socket).

removed reference to pipes_struct in msrpc services.  all msrpc processing
functions take rpcsrv_struct which is a structure containing state info
for the msrpc functions to decode and create pdus.

created become_vuser() which does everything not related to connection_struct
that become_user() does.

removed, as best i could, connection_struct dependencies from the nt spoolss
printing code.

todo: remove dcinfo from rpcsrv_struct because this stores NETLOGON-specific
info on a per-connection basis, and if the connection dies then so does
the info, and that's a fairly serious problem.

had to put pretty much everything that is in user_struct into parse_creds.c
to feed unix user info over to the msrpc daemons.  why?  because it's
expensive to do unix password/group database lookups, and it's definitely
expensive to do nt user profile lookups, not to mention pretty difficult
and if you did either of these it would introduce a complication /
unnecessary interdependency.  so, send uid/gid/num_groups/gid_t* +
SID+num_rids+domain_group_rids* + unix username + nt username + nt domain
+ user session key etc.  this is the MINIMUM info identified so far that's
actually implemented.  missing bits include the called and calling
netbios names etc.  (basically, anything that can be loaded into
standard_sub() and standard_sub_basic()...)
(This used to be commit aa3c659a8dba0437c17c60055a6ed30fdfecdb6d)
1999-12-12 01:25:49 +00:00

389 lines
11 KiB
C

/*
* Unix SMB/Netbios implementation.
* Version 1.9.
* RPC Pipe client / server routines
* Copyright (C) Andrew Tridgell 1992-1997,
* Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
* Copyright (C) Paul Ashton 1997.
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "includes.h"
#include "nterr.h"
extern int DEBUGLEVEL;
/*******************************************************************
svc_reply_unknown_1
********************************************************************/
static void svc_reply_close(SVC_Q_CLOSE *q_r,
prs_struct *rdata)
{
SVC_R_CLOSE r_u;
/* set up the REG unknown_1 response */
bzero(r_u.pol.data, POL_HND_SIZE);
/* close the policy handle */
if (close_policy_hnd(&(q_r->pol)))
{
r_u.status = 0;
}
else
{
r_u.status = 0xC0000000 | NT_STATUS_OBJECT_NAME_INVALID;
}
DEBUG(5,("svc_unknown_1: %d\n", __LINE__));
/* store the response in the SMB stream */
svc_io_r_close("", &r_u, rdata, 0);
DEBUG(5,("svc_unknown_1: %d\n", __LINE__));
}
/*******************************************************************
api_svc_close
********************************************************************/
static void api_svc_close( rpcsrv_struct *p, prs_struct *data,
prs_struct *rdata )
{
SVC_Q_CLOSE q_r;
svc_io_q_close("", &q_r, data, 0);
svc_reply_close(&q_r, rdata);
}
/*******************************************************************
svc_reply_open_service
********************************************************************/
static void svc_reply_open_service(SVC_Q_OPEN_SERVICE *q_u,
prs_struct *rdata)
{
uint32 status = 0;
POLICY_HND pol;
SVC_R_OPEN_SERVICE r_u;
fstring name;
DEBUG(5,("svc_open_service: %d\n", __LINE__));
if (status == 0x0 && find_policy_by_hnd(&q_u->scman_pol) == -1)
{
status = 0xC000000 | NT_STATUS_INVALID_HANDLE;
}
if (status == 0x0 && !open_policy_hnd(&pol))
{
status = 0xC000000 | NT_STATUS_TOO_MANY_SECRETS; /* ha ha very droll */
}
unistr2_to_ascii(name, &q_u->uni_svc_name, sizeof(name)-1);
if (status == 0x0)
{
DEBUG(5,("svc_open_service: %s\n", name));
/* lkcl XXXX do a check on the name, here */
}
if (status == 0x0 && !set_policy_reg_name(&pol, name))
{
status = 0xC000000 | NT_STATUS_TOO_MANY_SECRETS; /* ha ha very droll */
}
make_svc_r_open_service(&r_u, &pol, status);
/* store the response in the SMB stream */
svc_io_r_open_service("", &r_u, rdata, 0);
DEBUG(5,("svc_open_service: %d\n", __LINE__));
}
/*******************************************************************
api_svc_open_service
********************************************************************/
static void api_svc_open_service( rpcsrv_struct *p, prs_struct *data,
prs_struct *rdata )
{
SVC_Q_OPEN_SERVICE q_u;
svc_io_q_open_service("", &q_u, data, 0);
svc_reply_open_service(&q_u, rdata);
}
/*******************************************************************
svc_reply_start_service
********************************************************************/
static void svc_reply_start_service(SVC_Q_START_SERVICE *q_s,
prs_struct *rdata)
{
SVC_R_START_SERVICE r_s;
DEBUG(5,("svc_start_service: %d\n", __LINE__));
r_s.status = 0x0;
if (find_policy_by_hnd(&q_s->pol) == -1)
{
r_s.status = 0xC000000 | NT_STATUS_INVALID_HANDLE;
}
/* start the service here */
/* store the response in the SMB stream */
svc_io_r_start_service("", &r_s, rdata, 0);
DEBUG(5,("svc_start_service: %d\n", __LINE__));
}
/*******************************************************************
api_svc_start_service
********************************************************************/
static void api_svc_start_service( rpcsrv_struct *p, prs_struct *data,
prs_struct *rdata )
{
SVC_Q_START_SERVICE q_u;
svc_io_q_start_service("", &q_u, data, 0);
svc_reply_start_service(&q_u, rdata);
}
/*******************************************************************
svc_reply_open_sc_man
********************************************************************/
static void svc_reply_open_sc_man(SVC_Q_OPEN_SC_MAN *q_u,
prs_struct *rdata)
{
uint32 status = 0;
POLICY_HND pol;
SVC_R_OPEN_SC_MAN r_u;
fstring name;
DEBUG(5,("svc_open_sc_man: %d\n", __LINE__));
if (status == 0x0 && !open_policy_hnd(&pol))
{
status = 0xC000000 | NT_STATUS_TOO_MANY_SECRETS; /* ha ha very droll */
}
unistr2_to_ascii(name, &q_u->uni_srv_name, sizeof(name)-1);
if (status == 0x0)
{
DEBUG(5,("svc_open_sc_man: %s\n", name));
/* lkcl XXXX do a check on the name, here */
}
if (status == 0x0 && !set_policy_reg_name(&pol, name))
{
status = 0xC000000 | NT_STATUS_TOO_MANY_SECRETS; /* ha ha very droll */
}
make_svc_r_open_sc_man(&r_u, &pol, status);
/* store the response in the SMB stream */
svc_io_r_open_sc_man("", &r_u, rdata, 0);
DEBUG(5,("svc_open_sc_man: %d\n", __LINE__));
}
/*******************************************************************
api_svc_open_sc_man
********************************************************************/
static void api_svc_open_sc_man( rpcsrv_struct *p, prs_struct *data,
prs_struct *rdata )
{
SVC_Q_OPEN_SC_MAN q_u;
svc_io_q_open_sc_man("", &q_u, data, 0);
svc_reply_open_sc_man(&q_u, rdata);
}
static char *dummy_services[] =
{
"imapd",
"popd",
"smbd",
"nmbd",
"httpd",
"inetd",
"syslogd",
NULL
};
/*******************************************************************
svc_reply_enum_svcs_status
********************************************************************/
static void svc_reply_enum_svcs_status(SVC_Q_ENUM_SVCS_STATUS *q_u,
prs_struct *rdata)
{
uint32 dos_status = 0;
SVC_R_ENUM_SVCS_STATUS r_u;
ENUM_SRVC_STATUS *svcs = NULL;
int num_svcs = 0;
int buf_size = 0;
int i = get_enum_hnd(&q_u->resume_hnd);
uint32 resume_hnd = 0;
int max_buf_size = 0x10000;
ZERO_STRUCT(r_u);
DEBUG(5,("svc_enum_svcs_status: %d\n", __LINE__));
if (dos_status == 0x0 && find_policy_by_hnd(&q_u->pol) == -1)
{
dos_status = 0xC000000 | NT_STATUS_INVALID_HANDLE;
}
if (dos_status == 0x0)
{
DEBUG(5,("svc_enum_svcs_status:\n"));
while (dummy_services[i] != NULL)
{
ENUM_SRVC_STATUS *svc = NULL;
buf_size += strlen(dummy_services[i] + 1) * 2;
buf_size += 9 * sizeof(uint32);
DEBUG(10,("buf_size: %d q_u->buf_size: %d\n",
buf_size, q_u->buf_size));
if (buf_size >= max_buf_size)
{
resume_hnd = i;
break;
}
if (buf_size > q_u->buf_size)
{
dos_status = ERRmoredata;
break;
}
num_svcs++;
svcs = Realloc(svcs, num_svcs * sizeof(ENUM_SRVC_STATUS));
if (svcs == NULL)
{
dos_status = ERRnomem;
num_svcs = 0;
break;
}
svc = &svcs[num_svcs-1];
ZERO_STRUCTP(svc);
make_unistr(&svc->uni_srvc_name, dummy_services[i]);
make_unistr(&svc->uni_disp_name, dummy_services[i]);
DEBUG(10,("show service: %s\n", dummy_services[i]));
i++;
}
}
/*
* check for finished condition: no resume handle and last buffer fits
*/
if (resume_hnd == 0 && buf_size <= q_u->buf_size)
{
/* this indicates, along with resume_hnd of 0, an end. */
max_buf_size = 0;
}
make_svc_r_enum_svcs_status(&r_u, svcs, max_buf_size, num_svcs, resume_hnd, dos_status);
/* store the response in the SMB stream */
svc_io_r_enum_svcs_status("", &r_u, rdata, 0);
if (svcs != NULL)
{
free(svcs);
}
DEBUG(5,("svc_enum_svcs_status: %d\n", __LINE__));
}
/*******************************************************************
api_svc_enum_svcs_status
********************************************************************/
static void api_svc_enum_svcs_status( rpcsrv_struct *p, prs_struct *data,
prs_struct *rdata )
{
SVC_Q_ENUM_SVCS_STATUS q_u;
svc_io_q_enum_svcs_status("", &q_u, data, 0);
svc_reply_enum_svcs_status(&q_u, rdata);
}
/*******************************************************************
svc_reply_query_disp_name
********************************************************************/
static void svc_reply_query_disp_name(SVC_Q_QUERY_DISP_NAME *q_u,
prs_struct *rdata)
{
SVC_R_QUERY_DISP_NAME r_u;
fstring svc_name;
uint32 status = 0;
DEBUG(5,("svc_query_disp_name: %d\n", __LINE__));
if (find_policy_by_hnd(&q_u->scman_pol) == -1)
{
status = 0xC000000 | NT_STATUS_INVALID_HANDLE;
}
/* for now display name = service name */
unistr2_to_ascii(svc_name, &q_u->uni_svc_name, sizeof(svc_name)-1);
make_svc_r_query_disp_name(&r_u, svc_name, status);
/* store the response in the SMB stream */
svc_io_r_query_disp_name("", &r_u, rdata, 0);
DEBUG(5,("svc_query_disp_name: %d\n", __LINE__));
}
/*******************************************************************
api_svc_query_disp_name
********************************************************************/
static void api_svc_query_disp_name( rpcsrv_struct *p, prs_struct *data,
prs_struct *rdata )
{
SVC_Q_QUERY_DISP_NAME q_u;
svc_io_q_query_disp_name("", &q_u, data, 0);
svc_reply_query_disp_name(&q_u, rdata);
}
/*******************************************************************
array of \PIPE\svcctl operations
********************************************************************/
static struct api_struct api_svc_cmds[] =
{
{ "SVC_CLOSE" , SVC_CLOSE , api_svc_close },
{ "SVC_OPEN_SC_MAN" , SVC_OPEN_SC_MAN , api_svc_open_sc_man },
{ "SVC_OPEN_SERVICE" , SVC_OPEN_SERVICE , api_svc_open_service },
{ "SVC_ENUM_SVCS_STATUS", SVC_ENUM_SVCS_STATUS, api_svc_enum_svcs_status },
{ "SVC_QUERY_DISP_NAME" , SVC_QUERY_DISP_NAME , api_svc_query_disp_name },
{ "SVC_START_SERVICE" , SVC_START_SERVICE , api_svc_start_service },
{ NULL , 0 , NULL }
};
/*******************************************************************
receives a svcctl pipe and responds.
********************************************************************/
BOOL api_svcctl_rpc(rpcsrv_struct *p, prs_struct *data)
{
return api_rpcTNP(p, "api_svc_rpc", api_svc_cmds, data);
}