mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
r11048: r10539@SERNOX: metze | 2005-09-27 14:59:47 +0200
fix the build for changes from SAMBA_4_0 branch metze r10541@SERNOX: metze | 2005-09-27 15:05:33 +0200 use a transaction when we allocate a new version metze r10549@SERNOX: metze | 2005-09-27 18:58:37 +0200 - add first start of wins pull replication - we not yet apply records to our database but we fetch them correct form our partners (we need conflict handling for this) - we also need to filter out our own records! metze r10568@SERNOX: metze | 2005-09-28 11:33:04 +0200 move composite helpers to a seperate file, create a a seperate file for the conflict resolving logic metze r10571@SERNOX: metze | 2005-09-28 12:00:17 +0200 add forward declarations...to fix the build metze r10612@SERNOX: metze | 2005-09-29 16:11:06 +0200 we have a nbt_name now, and don't need to parse it metze r10614@SERNOX: metze | 2005-09-29 16:38:35 +0200 filter out our own records metze r10620@SERNOX: metze | 2005-09-29 18:07:08 +0200 - handle mutliple addresses in WREPL_REPL_SEND_REPLY - make strings always valid talloc pointers metze r10621@SERNOX: metze | 2005-09-29 18:09:41 +0200 use debug level 2 metze r10622@SERNOX: metze | 2005-09-29 18:48:05 +0200 - add one more debug message when we reply no record - fix min max logic metze r10623@SERNOX: metze | 2005-09-29 20:49:06 +0200 build fixes... metze r10629@SERNOX: metze | 2005-09-30 00:11:41 +0200 - use seperate attributes for type, state, nodetype, is_static ... the winserver.c code needs some more updates to correctly, create special group and multihomed registrations... metze r10640@SERNOX: metze | 2005-09-30 04:07:34 +0200 - add some short path for the composite helper functions they will be used in the next commit metze r10642@SERNOX: metze | 2005-09-30 06:29:06 +0200 fix the build metze r10655@SERNOX: metze | 2005-09-30 17:36:49 +0200 - implement the WREPL_REPL_UPDATE* and WREPL_REPL_INFORM* this includes the connection fliping into a client connection for WREPL_REPL_UPDATE* NOTE: I not yet found out how to get the w2k server to use INFORM against samba4 it uses inform against w2k and w2k3 but UPDATE against nt4 and samba4 what's left now is to be able to initiate INFORM and UPDATE requests to notify our pull partners metze r10727@SERNOX: metze | 2005-10-05 14:11:05 +0200 fix the build metze r10770@SERNOX: metze | 2005-10-06 16:56:01 +0200 - move the table filling to a seperate function, will be reused later - fix the build, wrepl_nbt_name fixes - remove state -> update_state metze r10771@SERNOX: metze | 2005-10-06 17:04:48 +0200 add a function to create a wreplsrv_in_connection from a client connection metze r10772@SERNOX: metze | 2005-10-06 17:13:51 +0200 - make the connection code more generic to handle the pull cached connection, push cached connection or given connections - when we don't use a cached connection, disconnection when a pull_cycle is done - fix the build and use the configured source ip metze r10773@SERNOX: metze | 2005-10-06 17:18:49 +0200 - add composite functions for push notification metze r10774@SERNOX: metze | 2005-10-06 17:23:46 +0200 - use periodic push notifycation, this is just for now as it needs to be configurable and and be triggered when the local database has changes since the last notify - I also need to work out how to decide if the partner supports persistent connections and WREPL_REPL_INFORM* messages metze r10923@SERNOX: metze | 2005-10-12 16:52:34 +0200 fix the build becuse of conflicts with main SAMBA_4_0 tree metze
This commit is contained in:
parent
177d60f42a
commit
6d97dd6e50
@ -285,6 +285,7 @@ struct wrepl_associate;
|
||||
struct wrepl_associate_stop;
|
||||
struct wrepl_pull_table;
|
||||
struct wrepl_pull_names;
|
||||
struct wrepl_table;
|
||||
|
||||
struct arcfour_state;
|
||||
|
||||
|
@ -57,7 +57,7 @@ void nbtd_request_defense(struct nbt_name_socket *nbtsock,
|
||||
|
||||
iname = nbtd_find_iname(iface, name, NBT_NM_ACTIVE);
|
||||
if (iname != NULL &&
|
||||
!IS_GROUP_NAME(name, iname->nb_flags)) {
|
||||
!(name->type == NBT_NAME_LOGON || iname->nb_flags & NBT_NM_GROUP)) {
|
||||
DEBUG(2,("Defending name %s on %s against %s\n",
|
||||
nbt_name_string(packet, name),
|
||||
iface->bcast_address, src->addr));
|
||||
|
@ -120,6 +120,7 @@ static NTSTATUS nbtd_getdcname(struct irpc_message *msg,
|
||||
struct nbt_ntlogon_sam_logon *r;
|
||||
struct nbt_dgram_socket *sock;
|
||||
struct nbt_name src, dst;
|
||||
struct nbt_peer_socket dest;
|
||||
struct dgram_mailslot_handler *handler;
|
||||
NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
|
||||
|
||||
@ -153,8 +154,10 @@ static NTSTATUS nbtd_getdcname(struct irpc_message *msg,
|
||||
make_nbt_name_client(&src, req->in.my_computername);
|
||||
make_nbt_name(&dst, req->in.domainname, 0x1c);
|
||||
|
||||
dest.addr = req->in.ip_address;
|
||||
dest.port = 138;
|
||||
status = dgram_mailslot_ntlogon_send(sock, DGRAM_DIRECT_GROUP,
|
||||
&dst, req->in.ip_address, 138,
|
||||
&dst, &dest,
|
||||
&src, &p);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(0, ("dgram_mailslot_ntlogon_send failed: %s\n",
|
||||
|
@ -21,6 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "libcli/nbt/libnbt.h"
|
||||
#include "libcli/wrepl/winsrepl.h"
|
||||
#include "libcli/dgram/libdgram.h"
|
||||
#include "librpc/gen_ndr/ndr_irpc.h"
|
||||
#include "lib/messaging/irpc.h"
|
||||
@ -79,13 +80,9 @@ struct nbtd_server {
|
||||
|
||||
|
||||
/* check a condition on an incoming packet */
|
||||
#define NBTD_ASSERT_PACKET(packet, src_address, test) do { \
|
||||
#define NBTD_ASSERT_PACKET(packet, src, test) do { \
|
||||
if (!(test)) { \
|
||||
nbtd_bad_packet(packet, src_address, #test); \
|
||||
nbtd_bad_packet(packet, src, #test); \
|
||||
return; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
/* this copes with the nasty hack that is the type 0x1c name */
|
||||
#define IS_GROUP_NAME(name, nb_flags) \
|
||||
((name)->type != NBT_NAME_LOGON && (nb_flags & NBT_NM_GROUP))
|
||||
|
@ -44,10 +44,8 @@ static uint64_t winsdb_allocate_version(struct wins_server *winssrv)
|
||||
dn = ldb_dn_explode(tmp_ctx, "CN=VERSION");
|
||||
if (!dn) goto failed;
|
||||
|
||||
ret |= ldb_msg_add_string(msg, "objectClass", "winsEntry");
|
||||
ret |= ldb_msg_add_fmt(msg, "minVersion", "%llu", winssrv->min_version);
|
||||
ret |= ldb_msg_add_fmt(msg, "maxVersion", "%llu", winssrv->max_version);
|
||||
if (ret != 0) goto failed;
|
||||
dn = ldb_dn_explode(tmp_ctx, "CN=VERSION");
|
||||
if (!dn) goto failed;
|
||||
|
||||
if (ret == 1) {
|
||||
maxVersion = ldb_msg_find_uint64(res[0], "maxVersion", 0);
|
||||
@ -71,6 +69,9 @@ static uint64_t winsdb_allocate_version(struct wins_server *winssrv)
|
||||
talloc_free(tmp_ctx);
|
||||
return maxVersion;
|
||||
|
||||
talloc_free(tmp_ctx);
|
||||
return maxVersion;
|
||||
|
||||
failed:
|
||||
talloc_free(tmp_ctx);
|
||||
return 0;
|
||||
@ -742,16 +743,19 @@ struct ldb_message *winsdb_message(struct ldb_context *ldb,
|
||||
|
||||
msg->dn = winsdb_dn(msg, rec->name);
|
||||
if (msg->dn == NULL) goto failed;
|
||||
ret |= ldb_msg_add_fmt(msg, "objectClass", "wins");
|
||||
ret |= ldb_msg_add_fmt(msg, "active", "%u", rec->state);
|
||||
ret |= ldb_msg_add_fmt(msg, "nbFlags", "0x%04x", rec->nb_flags);
|
||||
ret |= ldb_msg_add_string(msg, "registeredBy", rec->registered_by);
|
||||
ret |= ldb_msg_add_string(msg, "expires",
|
||||
ret |= ldb_msg_add_fmt(msg, "objectClass", "winsRecord");
|
||||
ret |= ldb_msg_add_fmt(msg, "recordType", "%u", rec->type);
|
||||
ret |= ldb_msg_add_fmt(msg, "recordState", "%u", rec->state);
|
||||
ret |= ldb_msg_add_fmt(msg, "nodeType", "%u", rec->node);
|
||||
ret |= ldb_msg_add_fmt(msg, "isStatic", "%u", rec->is_static);
|
||||
ret |= ldb_msg_add_string(msg, "expireTime",
|
||||
ldb_timestring(msg, rec->expire_time));
|
||||
ret |= ldb_msg_add_fmt(msg, "version", "%llu", rec->version);
|
||||
ret |= ldb_msg_add_fmt(msg, "versionID", "%llu", rec->version);
|
||||
ret |= ldb_msg_add_string(msg, "winsOwner", rec->wins_owner);
|
||||
for (i=0;rec->addresses[i];i++) {
|
||||
ret |= ldb_msg_add_string(msg, "address", rec->addresses[i]);
|
||||
ret |= ldb_msg_add_winsdb_addr(msg, "address", rec->addresses[i]);
|
||||
}
|
||||
ret |= ldb_msg_add_string(msg, "registeredBy", rec->registered_by);
|
||||
if (ret != 0) goto failed;
|
||||
return msg;
|
||||
|
||||
@ -771,12 +775,12 @@ uint8_t winsdb_add(struct wins_server *winssrv, struct winsdb_record *rec)
|
||||
int trans = -1;
|
||||
int ret = 0;
|
||||
|
||||
|
||||
trans = ldb_transaction_start(ldb);
|
||||
if (trans != LDB_SUCCESS) goto failed;
|
||||
|
||||
rec->version = winsdb_allocate_version(winssrv);
|
||||
if (rec->version == 0) goto failed;
|
||||
rec->wins_owner = WINSDB_OWNER_LOCAL;
|
||||
|
||||
msg = winsdb_message(winssrv->wins_db, rec, tmp_ctx);
|
||||
if (msg == NULL) goto failed;
|
||||
@ -849,9 +853,6 @@ uint8_t winsdb_delete(struct wins_server *winssrv, struct winsdb_record *rec)
|
||||
int trans;
|
||||
int ret;
|
||||
|
||||
if(!winsdb_remove_version(winssrv, rec->version))
|
||||
goto failed;
|
||||
|
||||
dn = winsdb_dn(tmp_ctx, rec->name);
|
||||
if (dn == NULL) goto failed;
|
||||
|
||||
|
@ -20,9 +20,13 @@
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
enum wins_record_state {
|
||||
WINS_REC_RELEASED =0,
|
||||
WINS_REC_ACTIVE =1
|
||||
#define WINSDB_OWNER_LOCAL "0.0.0.0"
|
||||
#define WINSDB_GROUP_ADDRESS "255.255.255.255"
|
||||
|
||||
struct winsdb_addr {
|
||||
const char *address;
|
||||
const char *wins_owner;
|
||||
time_t expire_time;
|
||||
};
|
||||
|
||||
#define WINSDB_OWNER_LOCAL "0.0.0.0"
|
||||
@ -39,10 +43,17 @@ struct winsdb_addr {
|
||||
*/
|
||||
struct winsdb_record {
|
||||
struct nbt_name *name;
|
||||
uint16_t nb_flags;
|
||||
enum wins_record_state state;
|
||||
enum wrepl_name_type type;
|
||||
enum wrepl_name_state state;
|
||||
enum wrepl_name_node node;
|
||||
BOOL is_static;
|
||||
const char *wins_owner;
|
||||
time_t expire_time;
|
||||
uint64_t version;
|
||||
const char *wins_owner;
|
||||
struct winsdb_addr **addresses;
|
||||
|
||||
/* only needed for debugging problems */
|
||||
const char *registered_by;
|
||||
struct winsdb_addr **addresses;
|
||||
uint64_t version;
|
||||
|
@ -36,6 +36,21 @@ uint32_t wins_server_ttl(struct wins_server *winssrv, uint32_t ttl)
|
||||
return ttl;
|
||||
}
|
||||
|
||||
static enum wrepl_name_type wrepl_type(uint16_t nb_flags, struct nbt_name *name, BOOL mhomed)
|
||||
{
|
||||
/* this copes with the nasty hack that is the type 0x1c name */
|
||||
if (name->type != NBT_NAME_LOGON) {
|
||||
return WREPL_TYPE_SGROUP;
|
||||
}
|
||||
if (nb_flags & NBT_NM_GROUP) {
|
||||
return WREPL_TYPE_GROUP;
|
||||
}
|
||||
if (mhomed) {
|
||||
return WREPL_TYPE_MHOMED;
|
||||
}
|
||||
return WREPL_TYPE_UNIQUE;
|
||||
}
|
||||
|
||||
/*
|
||||
register a new name with WINS
|
||||
*/
|
||||
@ -51,6 +66,9 @@ static uint8_t wins_register_new(struct nbt_name_socket *nbtsock,
|
||||
uint16_t nb_flags = packet->additional[0].rdata.netbios.addresses[0].nb_flags;
|
||||
const char *address = packet->additional[0].rdata.netbios.addresses[0].ipaddr;
|
||||
struct winsdb_record rec;
|
||||
enum wrepl_name_type type;
|
||||
enum wrepl_name_node node;
|
||||
BOOL mhomed = ((packet->operation & NBT_OPCODE) == NBT_OPCODE_MULTI_HOME_REG);
|
||||
|
||||
rec.name = name;
|
||||
rec.nb_flags = nb_flags;
|
||||
@ -137,7 +155,7 @@ static void nbtd_winsserver_register(struct nbt_name_socket *nbtsock,
|
||||
}
|
||||
|
||||
/* its an active name - first see if the registration is of the right type */
|
||||
if ((rec->nb_flags & NBT_NM_GROUP) && !(nb_flags & NBT_NM_GROUP)) {
|
||||
if ((rec->type == WREPL_TYPE_GROUP) && !(nb_flags & NBT_NM_GROUP)) {
|
||||
DEBUG(2,("WINS: Attempt to register unique name %s when group name is active\n",
|
||||
nbt_name_string(packet, name)));
|
||||
rcode = NBT_RCODE_ACT;
|
||||
@ -158,6 +176,15 @@ static void nbtd_winsserver_register(struct nbt_name_socket *nbtsock,
|
||||
goto done;
|
||||
}
|
||||
|
||||
/*
|
||||
* TODO: this complete functions needs a lot of work,
|
||||
* to handle special group and multiomed registrations
|
||||
*/
|
||||
if (name->type == NBT_NAME_LOGON) {
|
||||
wins_update_ttl(nbtsock, packet, rec, src);
|
||||
goto done;
|
||||
}
|
||||
|
||||
/* if the registration is for an address that is currently active, then
|
||||
just update the expiry time */
|
||||
if (winsdb_addr_list_check(rec->addresses, address)) {
|
||||
@ -246,7 +273,7 @@ static void nbtd_winsserver_release(struct nbt_name_socket *nbtsock,
|
||||
DEBUG(4,("WINS: released name %s at %s\n", nbt_name_string(rec, rec->name), address));
|
||||
winsdb_addr_list_remove(rec->addresses, address);
|
||||
if (rec->addresses[0] == NULL) {
|
||||
rec->state = WINS_REC_RELEASED;
|
||||
rec->state = WREPL_STATE_RELEASED;
|
||||
}
|
||||
winsdb_modify(winssrv, rec);
|
||||
}
|
||||
|
56
source/wrepl_server/wrepl_apply_records.c
Normal file
56
source/wrepl_server/wrepl_apply_records.c
Normal file
@ -0,0 +1,56 @@
|
||||
/*
|
||||
Unix SMB/CIFS implementation.
|
||||
|
||||
WINS Replication server
|
||||
|
||||
Copyright (C) Stefan Metzmacher 2005
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
#include "dlinklist.h"
|
||||
#include "lib/events/events.h"
|
||||
#include "lib/socket/socket.h"
|
||||
#include "smbd/service_task.h"
|
||||
#include "smbd/service_stream.h"
|
||||
#include "lib/messaging/irpc.h"
|
||||
#include "librpc/gen_ndr/ndr_winsrepl.h"
|
||||
#include "wrepl_server/wrepl_server.h"
|
||||
#include "wrepl_server/wrepl_out_helpers.h"
|
||||
#include "nbt_server/wins/winsdb.h"
|
||||
#include "ldb/include/ldb.h"
|
||||
#include "libcli/composite/composite.h"
|
||||
#include "libcli/wrepl/winsrepl.h"
|
||||
|
||||
NTSTATUS wreplsrv_apply_records(struct wreplsrv_partner *partner, struct wreplsrv_pull_names_io *names_io)
|
||||
{
|
||||
NTSTATUS status;
|
||||
|
||||
/* TODO: ! */
|
||||
DEBUG(0,("TODO: apply records count[%u]:owner[%s]:min[%llu]:max[%llu]:partner[%s]\n",
|
||||
names_io->out.num_names, names_io->in.owner.address,
|
||||
names_io->in.owner.min_version, names_io->in.owner.max_version,
|
||||
partner->address));
|
||||
|
||||
status = wreplsrv_add_table(partner->service,
|
||||
partner->service,
|
||||
&partner->service->table,
|
||||
names_io->in.owner.address,
|
||||
names_io->in.owner.max_version);
|
||||
NT_STATUS_NOT_OK_RETURN(status);
|
||||
|
||||
return NT_STATUS_OK;
|
||||
}
|
1043
source/wrepl_server/wrepl_out_helpers.c
Normal file
1043
source/wrepl_server/wrepl_out_helpers.c
Normal file
File diff suppressed because it is too large
Load Diff
62
source/wrepl_server/wrepl_out_helpers.h
Normal file
62
source/wrepl_server/wrepl_out_helpers.h
Normal file
@ -0,0 +1,62 @@
|
||||
/*
|
||||
Unix SMB/CIFS implementation.
|
||||
|
||||
WINS Replication server
|
||||
|
||||
Copyright (C) Stefan Metzmacher 2005
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
struct wreplsrv_pull_table_io {
|
||||
struct {
|
||||
struct wreplsrv_partner *partner;
|
||||
uint32_t num_owners;
|
||||
struct wrepl_wins_owner *owners;
|
||||
} in;
|
||||
struct {
|
||||
uint32_t num_owners;
|
||||
struct wrepl_wins_owner *owners;
|
||||
} out;
|
||||
};
|
||||
|
||||
struct wreplsrv_pull_names_io {
|
||||
struct {
|
||||
struct wreplsrv_partner *partner;
|
||||
struct wreplsrv_out_connection *wreplconn;
|
||||
struct wrepl_wins_owner owner;
|
||||
} in;
|
||||
struct {
|
||||
uint32_t num_names;
|
||||
struct wrepl_name *names;
|
||||
} out;
|
||||
};
|
||||
|
||||
struct wreplsrv_pull_cycle_io {
|
||||
struct {
|
||||
struct wreplsrv_partner *partner;
|
||||
uint32_t num_owners;
|
||||
struct wrepl_wins_owner *owners;
|
||||
struct wreplsrv_out_connection *wreplconn;
|
||||
} in;
|
||||
};
|
||||
|
||||
struct wreplsrv_push_notify_io {
|
||||
struct {
|
||||
struct wreplsrv_partner *partner;
|
||||
BOOL inform;
|
||||
BOOL propagate;
|
||||
} in;
|
||||
};
|
Loading…
Reference in New Issue
Block a user