summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb_server.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-06-29 07:40:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:49 -0500
commit118f3edd27f5adacc1da636ed05b33f04999584f (patch)
treeb4b314537144d48820589e925c4e3fb08f293ee5 /source4/smb_server/smb_server.h
parentb87fa55bdc69fe50743ddb58977e408853abb4cb (diff)
downloadsamba-118f3edd27f5adacc1da636ed05b33f04999584f.tar.gz
samba-118f3edd27f5adacc1da636ed05b33f04999584f.tar.bz2
samba-118f3edd27f5adacc1da636ed05b33f04999584f.zip
r1291: rename struct smbsrv_context to smbsrv_connection
because this is the connection state per transport layer (tcp) connection I also moved the substructs directly into smbsrv_connection, because they don't need a struct name and we should allway pass the complete smbsrv_connection struct into functions metze (This used to be commit 60f823f201fcedf5473008e8453a6351e73a92c7)
Diffstat (limited to 'source4/smb_server/smb_server.h')
-rw-r--r--source4/smb_server/smb_server.h308
1 files changed, 142 insertions, 166 deletions
diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h
index 93f8552d86..6dc40aee08 100644
--- a/source4/smb_server/smb_server.h
+++ b/source4/smb_server/smb_server.h
@@ -53,7 +53,7 @@ struct smbsrv_tcon {
struct smbsrv_tcon *next, *prev;
/* the server context that this was created on */
- struct smbsrv_context *smb_ctx;
+ struct smbsrv_connection *smb_conn;
/* a talloc context for all data in this structure */
TALLOC_CTX *mem_ctx;
@@ -80,8 +80,11 @@ struct smbsrv_tcon {
/* the context for a single SMB request. This is passed to any request-context
functions */
struct smbsrv_request {
+ /* a talloc context for the lifetime of this request */
+ TALLOC_CTX *mem_ctx;
+
/* the server_context contains all context specific to this SMB socket */
- struct smbsrv_context *smb_ctx;
+ struct smbsrv_connection *smb_conn;
/* conn is only set for operations that have a valid TID */
struct smbsrv_tcon *tcon;
@@ -89,9 +92,6 @@ struct smbsrv_request {
/* the user context is derived from the vuid plus smb.conf options */
struct smbsrv_user *user_ctx;
- /* a talloc context for the lifetime of this request */
- TALLOC_CTX *mem_ctx;
-
/* a set of flags to control usage of the request. See REQ_CONTROL_* */
unsigned control_flags;
@@ -168,48 +168,6 @@ struct smbsrv_request {
} in, out;
};
-
-
-/* the context associated with open files on an smb socket */
-struct files_context {
- struct files_struct *files; /* open files */
- struct bitmap *file_bmap; /* bitmap used to allocate file handles */
-
- /* a fsp to use when chaining */
- struct files_struct *chain_fsp;
-
- /* a fsp to use to save when breaking an oplock. */
- struct files_struct *oplock_save_chain_fsp;
-
- /* how many files are open */
- int files_used;
-
- /* limit for maximum open files */
- int real_max_open_files;
-};
-
-
-/* the context associated with open tree connects on a smb socket */
-struct tree_context {
- struct smbsrv_tcon *tcons;
-
- /* number of open connections */
- struct bitmap *bmap;
- int num_open;
-};
-
-/* context associated with currently valid session setups */
-struct users_context {
- /* users from session setup */
- char *session_users; /* was a pstring */
-
- /* this holds info on user ids that are already validated for this VC */
- struct user_struct *validated_users;
- int next_vuid; /* initialise to VUID_OFFSET */
- int num_validated_vuids;
-};
-
-
/* this contains variables that should be used in % substitutions for
* smb.conf parameters */
struct substitute_context {
@@ -232,144 +190,162 @@ struct substitute_context {
char *user_name;
};
-/* context that has been negotiated between the client and server */
-struct negotiate_context {
- /* have we already done the NBT session establishment? */
- BOOL done_nbt_session;
+#include "smbd/process_model.h"
- /* only one negprot per connection is allowed */
- BOOL done_negprot;
+/* smb server context structure. This should contain all the state
+ * information associated with a SMB server connection
+ */
+struct smbsrv_connection {
+ /* a talloc context for all data in this structure */
+ TALLOC_CTX *mem_ctx;
- /* multiple session setups are allowed, but some parameters are
- ignored in any but the first */
- BOOL done_sesssetup;
+ /* this is the context for a SMB socket associated with the socket itself */
+ struct {
+ /* the open file descriptor */
+ int fd;
- /*
- * Size of data we can send to client. Set
- * by the client for all protocols above CORE.
- * Set by us for CORE protocol.
- */
- unsigned max_send; /* init to BUFFER_SIZE */
-
- /*
- * Size of the data we can receive. Set by us.
- * Can be modified by the max xmit parameter.
- */
- unsigned max_recv; /* init to BUFFER_SIZE */
-
- /* a guess at the remote architecture. Try not to rely on this - in almost
- all cases using these values is the wrong thing to do */
- enum remote_arch_types ra_type;
-
- /* the negotiatiated protocol */
- enum protocol_types protocol;
-
- /* authentication context for multi-part negprot */
- struct auth_context *auth_context;
-
- /* state of NTLMSSP auth */
- struct auth_ntlmssp_state *ntlmssp_state;
-
- /* did we tell the client we support encrypted passwords? */
- BOOL encrypted_passwords;
-
- /* did we send an extended security negprot reply? */
- BOOL spnego_negotiated;
-
- /* client capabilities */
- uint32_t client_caps;
-
- /* the timezone we sent to the client */
- int zone_offset;
-};
+ /* the last read error on the socket, if any (replaces smb_read_error global) */
+ int read_error;
-/* this is the context for a SMB socket associated with the socket itself */
-struct socket_context {
- /* the open file descriptor */
- int fd;
-
- /* the last read error on the socket, if any (replaces smb_read_error global) */
- int read_error;
-
- /* a count of the number of packets we have received. We
- * actually only care about zero/non-zero at this stage */
- unsigned pkt_count;
-
- /* the network address of the client */
- char *client_addr;
-};
-
-
-/* this holds long term state specific to the printing subsystem */
-struct printing_context {
- struct notify_queue *notify_queue_head;
-};
-
+ /* a count of the number of packets we have received. We
+ * actually only care about zero/non-zero at this stage */
+ unsigned pkt_count;
+
+ /* the network address of the client */
+ char *client_addr;
+ } socket;
-/* the server_context holds a linked list of pending requests,
- * this is used for blocking locks and requests blocked due to oplock
- * break requests */
-struct pending_request {
- struct pending_request *next, *prev;
+ /* context that has been negotiated between the client and server */
+ struct {
+ /* have we already done the NBT session establishment? */
+ BOOL done_nbt_session;
+
+ /* only one negprot per connection is allowed */
+ BOOL done_negprot;
+
+ /* multiple session setups are allowed, but some parameters are
+ ignored in any but the first */
+ BOOL done_sesssetup;
+
+ /*
+ * Size of data we can send to client. Set
+ * by the client for all protocols above CORE.
+ * Set by us for CORE protocol.
+ */
+ unsigned max_send; /* init to BUFFER_SIZE */
+
+ /*
+ * Size of the data we can receive. Set by us.
+ * Can be modified by the max xmit parameter.
+ */
+ unsigned max_recv; /* init to BUFFER_SIZE */
+
+ /* a guess at the remote architecture. Try not to rely on this - in almost
+ all cases using these values is the wrong thing to do */
+ enum remote_arch_types ra_type;
+
+ /* the negotiatiated protocol */
+ enum protocol_types protocol;
+
+ /* authentication context for multi-part negprot */
+ struct auth_context *auth_context;
+
+ /* state of NTLMSSP auth */
+ struct auth_ntlmssp_state *ntlmssp_state;
+
+ /* did we tell the client we support encrypted passwords? */
+ BOOL encrypted_passwords;
+
+ /* did we send an extended security negprot reply? */
+ BOOL spnego_negotiated;
+
+ /* client capabilities */
+ uint32_t client_caps;
+
+ /* the timezone we sent to the client */
+ int zone_offset;
+ } negotiate;
- /* the request itself - needs to be freed */
- struct smbsrv_request *request;
-};
+ /* the context associated with open tree connects on a smb socket */
+ struct {
+ struct smbsrv_tcon *tcons;
-/* the timers context contains info on when we last did various
- * functions */
-struct timers_context {
- /* when did we last do timeout processing? */
- time_t last_timeout_processing;
+ /* number of open connections */
+ struct bitmap *bmap;
+ int num_open;
+ } tree;
- /* when did we last sent a keepalive */
- time_t last_keepalive_sent;
+ /* the context associated with open files on an smb socket */
+ struct {
+ struct files_struct *files; /* open files */
+ struct bitmap *file_bmap; /* bitmap used to allocate file handles */
- /* when we last checked the smb.conf for auto-reload */
- time_t last_smb_conf_reload;
-};
-
+ /* a fsp to use when chaining */
+ struct files_struct *chain_fsp;
+
+ /* a fsp to use to save when breaking an oplock. */
+ struct files_struct *oplock_save_chain_fsp;
+
+ /* how many files are open */
+ int files_used;
+
+ /* limit for maximum open files */
+ int real_max_open_files;
+ } file;
-struct signing_context {
- DATA_BLOB mac_key;
- uint64_t next_seq_num;
- enum smb_signing_state signing_state;
-};
+ /* context associated with currently valid session setups */
+ struct {
+ /* users from session setup */
+ char *session_users; /* was a pstring */
+
+ /* this holds info on user ids that are already validated for this VC */
+ struct user_struct *validated_users;
+ int next_vuid; /* initialise to VUID_OFFSET */
+ int num_validated_vuids;
+ } users;
-#include "smbd/process_model.h"
+ /* this holds long term state specific to the printing subsystem */
+ struct {
+ struct notify_queue *notify_queue_head;
+ } print;
+
+ /* the server_context holds a linked list of pending requests,
+ * this is used for blocking locks and requests blocked due to oplock
+ * break requests */
+ struct _smbsrv_pending_request {
+ struct _smbsrv_pending_request *next, *prev;
+
+ /* the request itself - needs to be freed */
+ struct smbsrv_request *request;
+ } *requests;
-/* smb server context structure. This should contain all the state
- * information associated with a SMB server */
-struct smbsrv_context {
- /* a talloc context for all data in this structure */
- TALLOC_CTX *mem_ctx;
+ /* the timers context contains info on when we last did various
+ * functions */
+ struct {
+ /* when did we last do timeout processing? */
+ time_t last_timeout_processing;
+
+ /* when did we last sent a keepalive */
+ time_t last_keepalive_sent;
+
+ /* when we last checked the smb.conf for auto-reload */
+ time_t last_smb_conf_reload;
+ } timers;
- struct negotiate_context negotiate;
+ struct {
+ DATA_BLOB mac_key;
+ uint64_t next_seq_num;
+ enum smb_signing_state signing_state;
+ } signing;
struct substitute_context substitute;
- struct socket_context socket;
-
- struct files_context file;
-
- struct tree_context tree;
-
- struct users_context users;
-
- struct printing_context print;
-
- struct timers_context timers;
-
struct dcesrv_context dcesrv;
- struct signing_context signing;
+ const struct model_ops *model_ops;
- /* the pid of the process handling this session */
- pid_t pid;
-
- /* pointer to list of events that we are waiting on */
struct event_context *events;
- /* process model specific operations */
- const struct model_ops *model_ops;
+ /* the pid of the process handling this session */
+ pid_t pid;
};