diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-25 03:15:54 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-24 19:02:33 +0100 |
commit | a210d9fa05d46ef2ec0dcdbf13e1fd83c93b6219 (patch) | |
tree | 21db90bef92c5dd8a09eadd3325a895fcb9f0318 /libcli | |
parent | 378c21a72a2d4727b10fd871c43d61792ada0625 (diff) | |
download | samba-a210d9fa05d46ef2ec0dcdbf13e1fd83c93b6219.tar.gz samba-a210d9fa05d46ef2ec0dcdbf13e1fd83c93b6219.tar.bz2 samba-a210d9fa05d46ef2ec0dcdbf13e1fd83c93b6219.zip |
s3:smbXcli: keep two fd per connection in order to work with the epoll tevent backend
metze
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/smb/smbXcli_base.c | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/libcli/smb/smbXcli_base.c b/libcli/smb/smbXcli_base.c index a2c94b3740..14b09302b9 100644 --- a/libcli/smb/smbXcli_base.c +++ b/libcli/smb/smbXcli_base.c @@ -37,7 +37,8 @@ struct smbXcli_req; struct smbXcli_session; struct smbXcli_conn { - int fd; + int read_fd; + int write_fd; struct sockaddr_storage local_ss; struct sockaddr_storage remote_ss; const char *remote_name; @@ -235,12 +236,17 @@ struct smbXcli_conn *smbXcli_conn_create(TALLOC_CTX *mem_ctx, return NULL; } + conn->read_fd = fd; + conn->write_fd = dup(fd); + if (conn->write_fd == -1) { + goto error; + } + conn->remote_name = talloc_strdup(conn, remote_name); if (conn->remote_name == NULL) { goto error; } - conn->fd = fd; ss = (void *)&conn->local_ss; sa = (struct sockaddr *)ss; @@ -319,6 +325,9 @@ struct smbXcli_conn *smbXcli_conn_create(TALLOC_CTX *mem_ctx, return conn; error: + if (conn->write_fd != -1) { + close(conn->write_fd); + } TALLOC_FREE(conn); return NULL; } @@ -329,7 +338,7 @@ bool smbXcli_conn_is_connected(struct smbXcli_conn *conn) return false; } - if (conn->fd == -1) { + if (conn->read_fd == -1) { return false; } @@ -356,7 +365,7 @@ bool smbXcli_conn_use_unicode(struct smbXcli_conn *conn) void smbXcli_conn_set_sockopt(struct smbXcli_conn *conn, const char *options) { - set_socket_options(conn->fd, options); + set_socket_options(conn->read_fd, options); } const struct sockaddr_storage *smbXcli_conn_local_sockaddr(struct smbXcli_conn *conn) @@ -722,7 +731,9 @@ static bool smbXcli_conn_receive_next(struct smbXcli_conn *conn) * We're the first ones, add the read_smb request that waits for the * answer from the server */ - conn->read_smb_req = read_smb_send(conn->pending, state->ev, conn->fd); + conn->read_smb_req = read_smb_send(conn->pending, + state->ev, + conn->read_fd); if (conn->read_smb_req == NULL) { return false; } @@ -732,10 +743,14 @@ static bool smbXcli_conn_receive_next(struct smbXcli_conn *conn) void smbXcli_conn_disconnect(struct smbXcli_conn *conn, NTSTATUS status) { - if (conn->fd != -1) { - close(conn->fd); + if (conn->read_fd != -1) { + close(conn->read_fd); + } + if (conn->write_fd != -1) { + close(conn->write_fd); } - conn->fd = -1; + conn->read_fd = -1; + conn->write_fd = -1; /* * Cancel all pending requests. We do not do a for-loop walking @@ -1231,7 +1246,7 @@ static NTSTATUS smb1cli_req_writev_submit(struct tevent_req *req, tevent_req_set_cancel_fn(req, smbXcli_req_cancel); subreq = writev_send(state, state->ev, state->conn->outgoing, - state->conn->fd, false, iov, iov_count); + state->conn->write_fd, false, iov, iov_count); if (subreq == NULL) { return NT_STATUS_NO_MEMORY; } @@ -2406,7 +2421,7 @@ skip_credits: } subreq = writev_send(state, state->ev, state->conn->outgoing, - state->conn->fd, false, iov, num_iov); + state->conn->write_fd, false, iov, num_iov); if (subreq == NULL) { return NT_STATUS_NO_MEMORY; } |