summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-04 00:49:13 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-04 00:49:13 +0000
commit8a8a7da5186596ee86b0b188156bca7d5e664784 (patch)
tree47481c7cddbe1628736aafcf5bf76978cab34e12 /source3
parent0ca1f87930a57dfd2510b98443423d8a67cfa70b (diff)
downloadsamba-8a8a7da5186596ee86b0b188156bca7d5e664784.tar.gz
samba-8a8a7da5186596ee86b0b188156bca7d5e664784.tar.bz2
samba-8a8a7da5186596ee86b0b188156bca7d5e664784.zip
argh! you wouldn't believe what i had to do: use the mid (multiplex id)
to redirect multiple socket-based connnections onto a single client state. argh! (This used to be commit 06390e792cd8aa57a91c3a3d1d267fd1bcdc17a1)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/smb.h2
-rw-r--r--source3/libsmb/clientgen.c2
-rw-r--r--source3/utils/smb-agent.c110
3 files changed, 99 insertions, 15 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 17da44e75b..5e6731e167 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -1743,6 +1743,8 @@ struct field_info
#define AGENT_CMD_CON 0
#define AGENT_CMD_CON_REUSE 1
+#define MAX_MAX_MUX_LIMIT 16
+
#endif /* _SMB_H */
/* _SMB_H */
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c
index 985d1c496d..fea105887f 100644
--- a/source3/libsmb/clientgen.c
+++ b/source3/libsmb/clientgen.c
@@ -1597,7 +1597,7 @@ size_t cli_read(struct cli_state *cli, int fnum, char *buf, off_t offset, size_t
int total = -1;
int issued=0;
int received=0;
- int mpx = MAX(cli->max_mux-1, 1);
+ int mpx = MIN(MAX(cli->max_mux-1, 1), MAX_MAX_MUX_LIMIT);
int block = (cli->max_xmit - (smb_size+32)) & ~1023;
int mid;
int blocks = (size + (block-1)) / block;
diff --git a/source3/utils/smb-agent.c b/source3/utils/smb-agent.c
index a52d696615..fd8697771d 100644
--- a/source3/utils/smb-agent.c
+++ b/source3/utils/smb-agent.c
@@ -41,12 +41,14 @@ extern int DEBUGLEVEL;
struct sock_redir
{
int c;
+ int mid_offset;
struct cli_state *s;
};
static uint32 num_socks = 0;
static struct sock_redir **socks = NULL;
+static uint16 mid_offset = 0x0;
/****************************************************************************
terminate sockent connection
@@ -129,6 +131,9 @@ static struct sock_redir *sock_redir_get(int fd, struct cli_state *cli)
sock->c = fd;
sock->s = cli;
+ sock->mid_offset = mid_offset;
+
+ DEBUG(10,("sock_redir_get:\tfd:\t%d\tmidoff:\t%d\n", fd, mid_offset));
return sock;
}
@@ -275,6 +280,15 @@ static struct cli_state *init_client_connection(int c)
DEBUG(0,("Unable to connect to %s\n", srv_name));
return NULL;
}
+
+ mid_offset += MIN(MAX(s->max_mux, 1), MAX_MAX_MUX_LIMIT);
+
+ if (mid_offset > 0xffff)
+ {
+ mid_offset = 0x0;
+ }
+ DEBUG(10,("new mid offset: %d\n", mid_offset));
+
if (write(c, s, sizeof(*s)) < 0)
{
DEBUG(0,("Could not write connection down pipe.\n"));
@@ -286,6 +300,29 @@ static struct cli_state *init_client_connection(int c)
return NULL;
}
+static void filter_reply(char *buf, int moff)
+{
+ int msg_type = CVAL(buf,0);
+ int x;
+
+ if (msg_type != 0x0) return;
+
+ /* alter the mid */
+ x = SVAL(buf, smb_mid);
+ x += moff;
+
+ if (x < 0)
+ {
+ x += 0x10000;
+ }
+ if (x > 0xffff)
+ {
+ x -= 0x10000;
+ }
+
+ SCVAL(buf, smb_mid, x);
+
+}
void process_cli_sock(struct sock_redir **sock)
{
struct cli_state *s = (*sock)->s;
@@ -309,6 +346,8 @@ void process_cli_sock(struct sock_redir **sock)
*sock = NULL;
return;
}
+
+ filter_reply(packet, (*sock)->mid_offset);
/* ignore keep-alives */
if (CVAL(packet, 0) != 0x85)
{
@@ -323,25 +362,63 @@ void process_cli_sock(struct sock_redir **sock)
}
}
-void process_srv_sock(struct sock_redir **sock)
+static int get_smbmid(char *buf)
{
- struct cli_state *s = (*sock)->s;
- if (!receive_smb(s->fd, packet, 0))
+ int msg_type = CVAL(buf,0);
+
+ if (msg_type != 0x0)
+ {
+ return -1;
+ }
+
+ return SVAL(buf,smb_mid);
+}
+
+static BOOL process_srv_sock(int fd)
+{
+ int smbmid;
+ int i;
+ if (!receive_smb(fd, packet, 0))
{
DEBUG(0,("server closed connection\n"));
- sock_redir_free(*sock);
- (*sock) = NULL;
- return;
+ return False;
}
- if (!send_smb((*sock)->c, packet))
+
+ smbmid = get_smbmid(packet);
+
+ DEBUG(10,("process_srv_sock:\tfd:\t%d\tmid:\t%d\n", fd, smbmid));
+
+ if (smbmid == -1)
{
- DEBUG(0,("client is dead\n"));
- sock_redir_free(*sock);
- (*sock) = NULL;
- return;
- }
-}
+ return True;
+ }
+ for (i = 0; i < num_socks; i++)
+ {
+ int moff;
+ if (socks[i] == NULL || socks[i]->s == NULL)
+ {
+ continue;
+ }
+ moff = socks[i]->mid_offset;
+ DEBUG(10,("list:\tfd:\t%d\tmid:\t%d\tmoff:\t%d\n",
+ socks[i]->s->fd,
+ socks[i]->s->mid,
+ moff));
+ if (smbmid != socks[i]->s->mid + moff)
+ {
+ continue;
+ }
+ filter_reply(packet, -moff);
+ if (!send_smb(socks[i]->c, packet))
+ {
+ DEBUG(0,("client is dead\n"));
+ return False;
+ }
+ return True;
+ }
+ return False;
+}
static void start_agent(void)
{
@@ -463,7 +540,12 @@ static void start_agent(void)
}
if (FD_ISSET(socks[i]->s->fd, &fds))
{
- process_srv_sock(&socks[i]);
+ FD_CLR(socks[i]->s->fd, &fds);
+ if (!process_srv_sock(socks[i]->s->fd))
+ {
+ sock_redir_free(socks[i]);
+ socks[i] = NULL;
+ }
}
}
}