2 * Unix SMB/CIFS implementation.
3 * RPC client transport over a socket
4 * Copyright (C) Volker Lendecke 2009
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #define DBGC_CLASS DBGC_RPC_CLI
25 struct rpc_transport_sock_state
{
29 static int rpc_transport_sock_state_destructor(struct rpc_transport_sock_state
*s
)
38 struct rpc_sock_read_state
{
42 static void rpc_sock_read_done(struct tevent_req
*subreq
);
44 static struct async_req
*rpc_sock_read_send(TALLOC_CTX
*mem_ctx
,
45 struct event_context
*ev
,
46 uint8_t *data
, size_t size
,
49 struct rpc_transport_sock_state
*sock_transp
= talloc_get_type_abort(
50 priv
, struct rpc_transport_sock_state
);
51 struct async_req
*result
;
52 struct tevent_req
*subreq
;
53 struct rpc_sock_read_state
*state
;
55 if (!async_req_setup(mem_ctx
, &result
, &state
,
56 struct rpc_sock_read_state
)) {
60 subreq
= async_recv_send(state
, ev
, sock_transp
->fd
, data
, size
, 0);
64 tevent_req_set_callback(subreq
, rpc_sock_read_done
, result
);
71 static void rpc_sock_read_done(struct tevent_req
*subreq
)
73 struct async_req
*req
=
74 tevent_req_callback_data(subreq
, struct async_req
);
75 struct rpc_sock_read_state
*state
= talloc_get_type_abort(
76 req
->private_data
, struct rpc_sock_read_state
);
79 state
->received
= async_recv_recv(subreq
, &err
);
80 if (state
->received
== -1) {
81 async_req_nterror(req
, map_nt_error_from_unix(err
));
87 static NTSTATUS
rpc_sock_read_recv(struct async_req
*req
, ssize_t
*preceived
)
89 struct rpc_sock_read_state
*state
= talloc_get_type_abort(
90 req
->private_data
, struct rpc_sock_read_state
);
93 if (async_req_is_nterror(req
, &status
)) {
96 *preceived
= state
->received
;
100 struct rpc_sock_write_state
{
104 static void rpc_sock_write_done(struct tevent_req
*subreq
);
106 static struct async_req
*rpc_sock_write_send(TALLOC_CTX
*mem_ctx
,
107 struct event_context
*ev
,
108 const uint8_t *data
, size_t size
,
111 struct rpc_transport_sock_state
*sock_transp
= talloc_get_type_abort(
112 priv
, struct rpc_transport_sock_state
);
113 struct async_req
*result
;
114 struct tevent_req
*subreq
;
115 struct rpc_sock_write_state
*state
;
117 if (!async_req_setup(mem_ctx
, &result
, &state
,
118 struct rpc_sock_write_state
)) {
121 subreq
= async_send_send(state
, ev
, sock_transp
->fd
, data
, size
, 0);
122 if (subreq
== NULL
) {
125 tevent_req_set_callback(subreq
, rpc_sock_write_done
, result
);
132 static void rpc_sock_write_done(struct tevent_req
*subreq
)
134 struct async_req
*req
=
135 tevent_req_callback_data(subreq
, struct async_req
);
136 struct rpc_sock_write_state
*state
= talloc_get_type_abort(
137 req
->private_data
, struct rpc_sock_write_state
);
140 state
->sent
= async_send_recv(subreq
, &err
);
141 if (state
->sent
== -1) {
142 async_req_nterror(req
, map_nt_error_from_unix(err
));
148 static NTSTATUS
rpc_sock_write_recv(struct async_req
*req
, ssize_t
*psent
)
150 struct rpc_sock_write_state
*state
= talloc_get_type_abort(
151 req
->private_data
, struct rpc_sock_write_state
);
154 if (async_req_is_nterror(req
, &status
)) {
157 *psent
= state
->sent
;
161 NTSTATUS
rpc_transport_sock_init(TALLOC_CTX
*mem_ctx
, int fd
,
162 struct rpc_cli_transport
**presult
)
164 struct rpc_cli_transport
*result
;
165 struct rpc_transport_sock_state
*state
;
167 result
= talloc(mem_ctx
, struct rpc_cli_transport
);
168 if (result
== NULL
) {
169 return NT_STATUS_NO_MEMORY
;
171 state
= talloc(result
, struct rpc_transport_sock_state
);
174 return NT_STATUS_NO_MEMORY
;
176 result
->priv
= state
;
179 talloc_set_destructor(state
, rpc_transport_sock_state_destructor
);
181 result
->trans_send
= NULL
;
182 result
->trans_recv
= NULL
;
183 result
->write_send
= rpc_sock_write_send
;
184 result
->write_recv
= rpc_sock_write_recv
;
185 result
->read_send
= rpc_sock_read_send
;
186 result
->read_recv
= rpc_sock_read_recv
;