mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
614950aed3
enabling of packet serialisation
(This used to be commit 6a47cd65a8
)
310 lines
7.3 KiB
C
310 lines
7.3 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
|
|
dcerpc over standard sockets transport
|
|
|
|
Copyright (C) Andrew Tridgell 2003
|
|
Copyright (C) Jelmer Vernooij 2004
|
|
|
|
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 "dlinklist.h"
|
|
#include "lib/events/events.h"
|
|
#include "librpc/gen_ndr/ndr_epmapper.h"
|
|
#include "lib/socket/socket.h"
|
|
#include "lib/stream/packet.h"
|
|
|
|
/* transport private information used by general socket pipe transports */
|
|
struct sock_private {
|
|
struct fd_event *fde;
|
|
struct socket_context *sock;
|
|
char *server_name;
|
|
|
|
struct packet_context *packet;
|
|
uint32_t pending_reads;
|
|
};
|
|
|
|
|
|
/*
|
|
mark the socket dead
|
|
*/
|
|
static void sock_dead(struct dcerpc_connection *p, NTSTATUS status)
|
|
{
|
|
struct sock_private *sock = p->transport.private;
|
|
|
|
if (sock && sock->sock != NULL) {
|
|
talloc_free(sock->fde);
|
|
talloc_free(sock->sock);
|
|
sock->sock = NULL;
|
|
}
|
|
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
p->transport.recv_data(p, NULL, status);
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
handle socket recv errors
|
|
*/
|
|
static void sock_error_handler(void *private, NTSTATUS status)
|
|
{
|
|
struct dcerpc_connection *p = talloc_get_type(private,
|
|
struct dcerpc_connection);
|
|
sock_dead(p, status);
|
|
}
|
|
|
|
/*
|
|
check if a blob is a complete packet
|
|
*/
|
|
static NTSTATUS sock_complete_packet(void *private, DATA_BLOB blob, size_t *size)
|
|
{
|
|
if (blob.length < DCERPC_FRAG_LEN_OFFSET+2) {
|
|
return STATUS_MORE_ENTRIES;
|
|
}
|
|
*size = dcerpc_get_frag_length(&blob);
|
|
if (*size > blob.length) {
|
|
return STATUS_MORE_ENTRIES;
|
|
}
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
process recv requests
|
|
*/
|
|
static NTSTATUS sock_process_recv(void *private, DATA_BLOB blob)
|
|
{
|
|
struct dcerpc_connection *p = talloc_get_type(private,
|
|
struct dcerpc_connection);
|
|
struct sock_private *sock = p->transport.private;
|
|
sock->pending_reads--;
|
|
if (sock->pending_reads == 0) {
|
|
packet_recv_disable(sock->packet);
|
|
}
|
|
p->transport.recv_data(p, &blob, NT_STATUS_OK);
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
called when a IO is triggered by the events system
|
|
*/
|
|
static void sock_io_handler(struct event_context *ev, struct fd_event *fde,
|
|
uint16_t flags, void *private)
|
|
{
|
|
struct dcerpc_connection *p = talloc_get_type(private,
|
|
struct dcerpc_connection);
|
|
struct sock_private *sock = p->transport.private;
|
|
|
|
if (flags & EVENT_FD_WRITE) {
|
|
packet_queue_run(sock->packet);
|
|
return;
|
|
}
|
|
|
|
if (sock->sock == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (flags & EVENT_FD_READ) {
|
|
packet_recv(sock->packet);
|
|
}
|
|
}
|
|
|
|
/*
|
|
initiate a read request - not needed for dcerpc sockets
|
|
*/
|
|
static NTSTATUS sock_send_read(struct dcerpc_connection *p)
|
|
{
|
|
struct sock_private *sock = p->transport.private;
|
|
sock->pending_reads++;
|
|
if (sock->pending_reads == 1) {
|
|
packet_recv_enable(sock->packet);
|
|
}
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
send an initial pdu in a multi-pdu sequence
|
|
*/
|
|
static NTSTATUS sock_send_request(struct dcerpc_connection *p, DATA_BLOB *data,
|
|
BOOL trigger_read)
|
|
{
|
|
struct sock_private *sock = p->transport.private;
|
|
DATA_BLOB blob;
|
|
NTSTATUS status;
|
|
|
|
if (sock->sock == NULL) {
|
|
return NT_STATUS_CONNECTION_DISCONNECTED;
|
|
}
|
|
|
|
blob = data_blob_talloc(sock->packet, data->data, data->length);
|
|
if (blob.data == NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
status = packet_send(sock->packet, blob);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
return status;
|
|
}
|
|
|
|
if (trigger_read) {
|
|
sock_send_read(p);
|
|
}
|
|
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
shutdown sock pipe connection
|
|
*/
|
|
static NTSTATUS sock_shutdown_pipe(struct dcerpc_connection *p)
|
|
{
|
|
struct sock_private *sock = p->transport.private;
|
|
|
|
if (sock && sock->sock) {
|
|
sock_dead(p, NT_STATUS_OK);
|
|
}
|
|
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
return sock server name
|
|
*/
|
|
static const char *sock_peer_name(struct dcerpc_connection *p)
|
|
{
|
|
struct sock_private *sock = p->transport.private;
|
|
return sock->server_name;
|
|
}
|
|
|
|
/*
|
|
open a rpc connection using the generic socket library
|
|
*/
|
|
static NTSTATUS dcerpc_pipe_open_socket(struct dcerpc_connection *c,
|
|
const char *server,
|
|
uint32_t port,
|
|
const char *type,
|
|
enum dcerpc_transport_t transport)
|
|
{
|
|
struct sock_private *sock;
|
|
struct socket_context *socket_ctx;
|
|
NTSTATUS status;
|
|
|
|
sock = talloc(c, struct sock_private);
|
|
if (!sock) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
status = socket_create(type, SOCKET_TYPE_STREAM, &socket_ctx, 0);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
talloc_free(sock);
|
|
return status;
|
|
}
|
|
talloc_steal(sock, socket_ctx);
|
|
|
|
status = socket_connect_ev(socket_ctx, NULL, 0, server, port, 0, c->event_ctx);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
talloc_free(sock);
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
fill in the transport methods
|
|
*/
|
|
c->transport.transport = transport;
|
|
c->transport.private = NULL;
|
|
|
|
c->transport.send_request = sock_send_request;
|
|
c->transport.send_read = sock_send_read;
|
|
c->transport.recv_data = NULL;
|
|
|
|
c->transport.shutdown_pipe = sock_shutdown_pipe;
|
|
c->transport.peer_name = sock_peer_name;
|
|
|
|
sock->sock = socket_ctx;
|
|
sock->pending_reads = 0;
|
|
sock->server_name = strupper_talloc(sock, server);
|
|
|
|
sock->fde = event_add_fd(c->event_ctx, sock->sock, socket_get_fd(sock->sock),
|
|
0, sock_io_handler, c);
|
|
|
|
c->transport.private = sock;
|
|
|
|
sock->packet = packet_init(sock);
|
|
if (sock->packet == NULL) {
|
|
talloc_free(sock);
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
packet_set_private(sock->packet, c);
|
|
packet_set_socket(sock->packet, sock->sock);
|
|
packet_set_callback(sock->packet, sock_process_recv);
|
|
packet_set_full_request(sock->packet, sock_complete_packet);
|
|
packet_set_error_handler(sock->packet, sock_error_handler);
|
|
packet_set_event_context(sock->packet, c->event_ctx);
|
|
packet_set_fde(sock->packet, sock->fde);
|
|
packet_set_serialise(sock->packet);
|
|
packet_recv_disable(sock->packet);
|
|
packet_set_initial_read(sock->packet, 16);
|
|
|
|
/* ensure we don't get SIGPIPE */
|
|
BlockSignals(True,SIGPIPE);
|
|
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
open a rpc connection using tcp
|
|
*/
|
|
NTSTATUS dcerpc_pipe_open_tcp(struct dcerpc_connection *c, const char *server, uint32_t port)
|
|
{
|
|
NTSTATUS status;
|
|
|
|
/* Try IPv6 first */
|
|
status = dcerpc_pipe_open_socket(c, server, port, "ipv6", NCACN_IP_TCP);
|
|
if (NT_STATUS_IS_OK(status)) {
|
|
return status;
|
|
}
|
|
|
|
return dcerpc_pipe_open_socket(c, server, port, "ipv4", NCACN_IP_TCP);
|
|
}
|
|
|
|
/*
|
|
open a rpc connection to a unix socket
|
|
*/
|
|
NTSTATUS dcerpc_pipe_open_unix_stream(struct dcerpc_connection *c, const char *path)
|
|
{
|
|
return dcerpc_pipe_open_socket(c, path, 0, "unix", NCACN_UNIX_STREAM);
|
|
}
|
|
|
|
/*
|
|
open a rpc connection to a named pipe
|
|
*/
|
|
NTSTATUS dcerpc_pipe_open_pipe(struct dcerpc_connection *c, const char *identifier)
|
|
{
|
|
NTSTATUS status;
|
|
char *canon, *full_path;
|
|
|
|
canon = talloc_strdup(NULL, identifier);
|
|
|
|
string_replace(canon, '/', '\\');
|
|
full_path = talloc_asprintf(canon, "%s/%s", lp_ncalrpc_dir(), canon);
|
|
|
|
status = dcerpc_pipe_open_socket(c, full_path, 0, "unix", NCALRPC);
|
|
talloc_free(canon);
|
|
|
|
return status;
|
|
}
|