summaryrefslogtreecommitdiff
path: root/source4/wrepl_server/wrepl_in_call.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-10-14 12:52:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:42:32 -0500
commit8bb5bcb6745661692f1116da67368a58910ce111 (patch)
treeaac86e5a454cad8e7111f67bc44676f523ee6a92 /source4/wrepl_server/wrepl_in_call.c
parente5c518bebd22fa1520ce217b4177309e7717d0fc (diff)
downloadsamba-8bb5bcb6745661692f1116da67368a58910ce111.tar.gz
samba-8bb5bcb6745661692f1116da67368a58910ce111.tar.bz2
samba-8bb5bcb6745661692f1116da67368a58910ce111.zip
r11033: r10343@SERNOX: metze | 2005-09-20 11:03:20 +0200
- reply to table_queries - reply to a send_request with an empty send_reply metze (This used to be commit a25279f05243fc89c2cc9267d59974bc17eaf47c)
Diffstat (limited to 'source4/wrepl_server/wrepl_in_call.c')
-rw-r--r--source4/wrepl_server/wrepl_in_call.c88
1 files changed, 81 insertions, 7 deletions
diff --git a/source4/wrepl_server/wrepl_in_call.c b/source4/wrepl_server/wrepl_in_call.c
index 9158b1a741..a67f20a480 100644
--- a/source4/wrepl_server/wrepl_in_call.c
+++ b/source4/wrepl_server/wrepl_in_call.c
@@ -29,6 +29,7 @@
#include "lib/messaging/irpc.h"
#include "librpc/gen_ndr/ndr_winsrepl.h"
#include "wrepl_server/wrepl_server.h"
+#include "nbt_server/wins/winsdb.h"
static NTSTATUS wreplsrv_in_start_association(struct wreplsrv_in_call *call)
{
@@ -103,9 +104,66 @@ static NTSTATUS wreplsrv_in_stop_association(struct wreplsrv_in_call *call)
return wreplsrv_in_stop_assoc_ctx(call);
}
+static NTSTATUS wreplsrv_in_table_query(struct wreplsrv_in_call *call)
+{
+ struct wreplsrv_service *service = call->wreplconn->service;
+ struct wrepl_replication *repl_out = &call->rep_packet.message.replication;
+ struct wrepl_table *table_out = &call->rep_packet.message.replication.info.table;
+ struct wreplsrv_owner *cur;
+ uint64_t local_max_version;
+ uint32_t i = 0;
+
+ repl_out->command = WREPL_REPL_TABLE_REPLY;
+
+ table_out->partner_count = 0;
+ table_out->partners = NULL;
+ table_out->initiator = WINSDB_OWNER_LOCAL;
+
+ local_max_version = wreplsrv_local_max_version(service);
+ if (local_max_version > 0) {
+ table_out->partner_count++;
+ }
+
+ for (cur = service->table; cur; cur = cur->next) {
+ table_out->partner_count++;
+ }
+
+ table_out->partners = talloc_array(call, struct wrepl_wins_owner, table_out->partner_count);
+ NT_STATUS_HAVE_NO_MEMORY(table_out->partners);
+
+ if (local_max_version > 0) {
+ table_out->partners[i].address = call->wreplconn->our_ip;
+ table_out->partners[i].min_version = 0;
+ table_out->partners[i].max_version = local_max_version;
+ table_out->partners[i].type = 1;
+ i++;
+ }
+
+ for (cur = service->table; cur; cur = cur->next) {
+ table_out->partners[i] = cur->owner;
+ i++;
+ }
+
+ return NT_STATUS_OK;
+}
+
+static NTSTATUS wreplsrv_in_send_request(struct wreplsrv_in_call *call)
+{
+ struct wrepl_replication *repl_out = &call->rep_packet.message.replication;
+ struct wrepl_send_reply *reply_out = &call->rep_packet.message.replication.info.reply;
+
+ repl_out->command = WREPL_REPL_SEND_REPLY;
+
+ reply_out->num_names = 0;
+ reply_out->names = NULL;
+
+ return NT_STATUS_OK;
+}
+
static NTSTATUS wreplsrv_in_replication(struct wreplsrv_in_call *call)
{
struct wrepl_replication *repl_in = &call->req_packet.message.replication;
+ NTSTATUS status;
/*
* w2k only check the assoc_ctx if the opcode has the 0x00007800 bits are set
@@ -125,24 +183,40 @@ static NTSTATUS wreplsrv_in_replication(struct wreplsrv_in_call *call)
switch (repl_in->command) {
case WREPL_REPL_TABLE_QUERY:
+ status = wreplsrv_in_table_query(call);
break;
+
case WREPL_REPL_TABLE_REPLY:
- break;
+ return ERROR_INVALID_PARAMETER;
+
case WREPL_REPL_SEND_REQUEST:
+ status = wreplsrv_in_send_request(call);
break;
+
case WREPL_REPL_SEND_REPLY:
- break;
+ return ERROR_INVALID_PARAMETER;
+
case WREPL_REPL_UPDATE:
- break;
+ return ERROR_INVALID_PARAMETER;
+
case WREPL_REPL_5:
- break;
+ return ERROR_INVALID_PARAMETER;
+
case WREPL_REPL_INFORM:
- break;
+ return ERROR_INVALID_PARAMETER;
+
case WREPL_REPL_9:
- break;
+ return ERROR_INVALID_PARAMETER;
+
+ default:
+ return ERROR_INVALID_PARAMETER;
}
- return ERROR_INVALID_PARAMETER;
+ if (NT_STATUS_IS_OK(status)) {
+ call->rep_packet.mess_type = WREPL_REPLICATION;
+ }
+
+ return status;
}
static NTSTATUS wreplsrv_in_invalid_assoc_ctx(struct wreplsrv_in_call *call)