s3-rpc_client: add enum dcerpc_transport_t to rpc_cli_transport struct.
[ira/wip.git] / source3 / include / client.h
index 646d54aa05d979eb9d9e5fb07a94606d5fc98d63..5b64b9be3a75e5913c5d6919293be28d9e0f8768 100644 (file)
@@ -68,29 +68,31 @@ struct cli_pipe_auth_data {
 
 struct rpc_cli_transport {
 
+       enum dcerpc_transport_t transport;
+
        /**
         * Trigger an async read from the server. May return a short read.
         */
-       struct async_req *(*read_send)(TALLOC_CTX *mem_ctx,
-                                      struct event_context *ev,
-                                       uint8_t *data, size_t size,
-                                      void *priv);
+       struct tevent_req *(*read_send)(TALLOC_CTX *mem_ctx,
+                                       struct event_context *ev,
+                                       uint8_t *data, size_t size,
+                                       void *priv);
        /**
         * Get the result from the read_send operation.
         */
-       NTSTATUS (*read_recv)(struct async_req *req, ssize_t *preceived);
+       NTSTATUS (*read_recv)(struct tevent_req *req, ssize_t *preceived);
 
        /**
         * Trigger an async write to the server. May return a short write.
         */
-       struct async_req *(*write_send)(TALLOC_CTX *mem_ctx,
-                                       struct event_context *ev,
-                                       const uint8_t *data, size_t size,
-                                       void *priv);
+       struct tevent_req *(*write_send)(TALLOC_CTX *mem_ctx,
+                                        struct event_context *ev,
+                                        const uint8_t *data, size_t size,
+                                        void *priv);
        /**
         * Get the result from the read_send operation.
         */
-       NTSTATUS (*write_recv)(struct async_req *req, ssize_t *psent);
+       NTSTATUS (*write_recv)(struct tevent_req *req, ssize_t *psent);
 
        /**
         * This is an optimization for the SMB transport. It models the
@@ -98,15 +100,15 @@ struct rpc_cli_transport {
         * trip. The transport implementation is free to set this to NULL,
         * cli_pipe.c will fall back to the explicit write/read routines.
         */
-       struct async_req *(*trans_send)(TALLOC_CTX *mem_ctx,
-                                       struct event_context *ev,
-                                       uint8_t *data, size_t data_len,
-                                       uint32_t max_rdata_len,
-                                       void *priv);
+       struct tevent_req *(*trans_send)(TALLOC_CTX *mem_ctx,
+                                        struct event_context *ev,
+                                        uint8_t *data, size_t data_len,
+                                        uint32_t max_rdata_len,
+                                        void *priv);
        /**
         * Get the result from the trans_send operation.
         */
-       NTSTATUS (*trans_recv)(struct async_req *req, TALLOC_CTX *mem_ctx,
+       NTSTATUS (*trans_recv)(struct tevent_req *req, TALLOC_CTX *mem_ctx,
                               uint8_t **prdata, uint32_t *prdata_len);
        void *priv;
 };
@@ -124,6 +126,17 @@ struct rpc_pipe_client {
                        const struct ndr_interface_table *table,
                        uint32_t opnum, void *r);
 
+       struct tevent_req *(*dispatch_send)(
+               TALLOC_CTX *mem_ctx,
+               struct tevent_context *ev,
+               struct rpc_pipe_client *cli,
+               const struct ndr_interface_table *table,
+               uint32_t opnum,
+               void *r);
+       NTSTATUS (*dispatch_recv)(struct tevent_req *req,
+                                 TALLOC_CTX *mem_ctx);
+
+
        char *desthost;
        char *srv_name_slash;
 
@@ -132,8 +145,8 @@ struct rpc_pipe_client {
 
        struct cli_pipe_auth_data *auth;
 
-       /* The following is only non-null on a netlogon pipe. */
-       struct dcinfo *dc;
+       /* The following is only non-null on a netlogon client pipe. */
+       struct netlogon_creds_CredentialState *dc;
 
        /* Used by internal rpc_pipe_client */
        pipes_struct *pipes_struct;
@@ -166,7 +179,18 @@ struct smb_trans_enc_state {
         } s;
 };
 
+struct cli_state_seqnum {
+       struct cli_state_seqnum *prev, *next;
+       uint16_t mid;
+       uint32_t seqnum;
+       bool persistent;
+};
+
 struct cli_state {
+       /**
+        * A list of subsidiary connections for DFS.
+        */
+        struct cli_state *prev, *next;
        int port;
        int fd;
        /* Last read or write error. */
@@ -183,9 +207,9 @@ struct cli_state {
        fstring desthost;
 
        /* The credentials used to open the cli_state connection. */
-       fstring domain;
-       fstring user_name;
-       struct pwd_info pwd;
+       char *domain;
+       char *user_name;
+       char *password; /* Can be null to force use of zero NTLMSSP session key. */
 
        /*
         * The following strings are the
@@ -213,6 +237,7 @@ struct cli_state {
        size_t max_xmit;
        size_t max_mux;
        char *outbuf;
+       struct cli_state_seqnum *seqnum;
        char *inbuf;
        unsigned int bufsize;
        int initialised;
@@ -227,7 +252,7 @@ struct cli_state {
        TALLOC_CTX *call_mem_ctx;
 #endif
 
-       smb_sign_info sign_info;
+       struct smb_signing_state *signing_state;
 
        struct smb_trans_enc_state *trans_enc_state; /* Setup if we're encrypting SMB's. */
 
@@ -247,35 +272,16 @@ struct cli_state {
        bool use_level_II_oplocks; /* should we use level II oplocks? */
 
        /* a oplock break request handler */
-       bool (*oplock_handler)(struct cli_state *cli, int fnum, unsigned char level);
+       NTSTATUS (*oplock_handler)(struct cli_state *cli, uint16_t fnum, unsigned char level);
 
        bool force_dos_errors;
        bool case_sensitive; /* False by default. */
 
-       /**
-        * fd_event is around while we have async requests outstanding or are
-        * building a chained request.
-        *
-        * (fd_event!=NULL) &&
-        *  ((outstanding_request!=NULL)||(chain_accumulator!=NULL))
-        *
-        * should always be true, as well as the reverse: If both cli_request
-        * pointers are NULL, no fd_event is around.
-        */
-       struct fd_event *fd_event;
-       char *evt_inbuf;
+       /* Where (if anywhere) this is mounted under DFS. */
+       char *dfs_mountpoint;
 
-       /**
-        * A linked list of requests that are waiting for a reply
-        */
-       struct cli_request *outstanding_requests;
-
-       /**
-        * The place to build up the list of chained requests. In CIFS, a
-        * single cli_request corresponds to a MID and can serve more than one
-        * chained async_req.
-        */
-       struct cli_request *chain_accumulator;
+       struct tevent_queue *outgoing;
+       struct tevent_req **pending;
 };
 
 typedef struct file_info {
@@ -296,5 +302,7 @@ typedef struct file_info {
 #define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002
 #define CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK 0x0004
 #define CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS 0x0008
+#define CLI_FULL_CONNECTION_OPLOCKS 0x0010
+#define CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS 0x0020
 
 #endif /* _CLIENT_H */