⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 netlogon.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 2 页
字号:
					 none_attrs, 					 "(&(objectClass=user)(samAccountName=%s)"					 "(!(userAccountControl:" LDB_OID_COMPARATOR_AND ":=%u))"					 "(userAccountControl:" LDB_OID_COMPARATOR_OR ":=%u))", 					 user, UF_ACCOUNTDISABLE, samdb_acb2uf(acct_control));		if (ret != LDB_SUCCESS) {			DEBUG(2,("Unable to find referece to user '%s' with ACB 0x%8x under %s: %s\n",				 user, acct_control, ldb_dn_get_linearized(dom_res->msgs[0]->dn),				 ldb_errstring(sam_ctx)));			return NT_STATUS_NO_SUCH_USER;		} else if (user_res->count == 1) {			user_known = true;		} else {			user_known = false;		}	} else {		user_known = true;	}			server_type      = 		NBT_SERVER_DS | NBT_SERVER_TIMESERV |		NBT_SERVER_CLOSEST | NBT_SERVER_WRITABLE | 		NBT_SERVER_GOOD_TIMESERV;	if (samdb_is_pdc(sam_ctx)) {		server_type |= NBT_SERVER_PDC;	}	if (samdb_is_gc(sam_ctx)) {		server_type |= NBT_SERVER_GC;	}	if (str_list_check(services, "ldap")) {		server_type |= NBT_SERVER_LDAP;	}	if (str_list_check(services, "kdc")) {		server_type |= NBT_SERVER_KDC;	}	pdc_name         = talloc_asprintf(mem_ctx, "\\\\%s", lp_netbios_name(lp_ctx));	domain_uuid      = samdb_result_guid(dom_res->msgs[0], "objectGUID");	realm            = samdb_result_string(ref_res->msgs[0], "dnsRoot", lp_realm(lp_ctx));	dns_domain       = samdb_result_string(ref_res->msgs[0], "dnsRoot", lp_realm(lp_ctx));	pdc_dns_name     = talloc_asprintf(mem_ctx, "%s.%s", 					   strlower_talloc(mem_ctx, 							   lp_netbios_name(lp_ctx)), 					   dns_domain);	flatname         = samdb_result_string(ref_res->msgs[0], "nETBIOSName", 					       lp_workgroup(lp_ctx));	server_site      = "Default-First-Site-Name";	client_site      = "Default-First-Site-Name";	load_interfaces(mem_ctx, lp_interfaces(lp_ctx), &ifaces);	pdc_ip           = iface_best_ip(ifaces, src_address);	ZERO_STRUCTP(netlogon);	/* check if either of these bits is present */	if (version & (NETLOGON_NT_VERSION_5EX|NETLOGON_NT_VERSION_5EX_WITH_IP)) {		uint32_t extra_flags = 0;		netlogon->ntver = NETLOGON_NT_VERSION_5EX;		/* could check if the user exists */		if (user_known) {			netlogon->nt5_ex.command      = LOGON_SAM_LOGON_RESPONSE_EX;		} else {			netlogon->nt5_ex.command      = LOGON_SAM_LOGON_USER_UNKNOWN_EX;		}		netlogon->nt5_ex.server_type  = server_type;		netlogon->nt5_ex.domain_uuid  = domain_uuid;		netlogon->nt5_ex.forest       = realm;		netlogon->nt5_ex.dns_domain   = dns_domain;		netlogon->nt5_ex.pdc_dns_name = pdc_dns_name;		netlogon->nt5_ex.domain       = flatname;		netlogon->nt5_ex.pdc_name     = lp_netbios_name(lp_ctx);		netlogon->nt5_ex.user_name    = user;		netlogon->nt5_ex.server_site  = server_site;		netlogon->nt5_ex.client_site  = client_site;		if (version & NETLOGON_NT_VERSION_5EX_WITH_IP) {			/* Clearly this needs to be fixed up for IPv6 */			extra_flags = NETLOGON_NT_VERSION_5EX_WITH_IP;			netlogon->nt5_ex.sockaddr.sa_family    = 2;			netlogon->nt5_ex.sockaddr.pdc_ip       = pdc_ip;			netlogon->nt5_ex.sockaddr.remaining = data_blob_talloc_zero(mem_ctx, 8);		}		netlogon->nt5_ex.nt_version   = NETLOGON_NT_VERSION_1|NETLOGON_NT_VERSION_5EX|extra_flags;		netlogon->nt5_ex.lmnt_token   = 0xFFFF;		netlogon->nt5_ex.lm20_token   = 0xFFFF;	} else if (version & NETLOGON_NT_VERSION_5) {		netlogon->ntver = NETLOGON_NT_VERSION_5;		/* could check if the user exists */		if (user_known) {			netlogon->nt5.command      = LOGON_SAM_LOGON_RESPONSE;		} else {			netlogon->nt5.command      = LOGON_SAM_LOGON_USER_UNKNOWN;		}		netlogon->nt5.pdc_name     = pdc_name;		netlogon->nt5.user_name    = user;		netlogon->nt5.domain_name  = flatname;		netlogon->nt5.domain_uuid  = domain_uuid;		netlogon->nt5.forest       = realm;		netlogon->nt5.dns_domain   = dns_domain;		netlogon->nt5.pdc_dns_name = pdc_dns_name;		netlogon->nt5.pdc_ip       = pdc_ip;		netlogon->nt5.server_type  = server_type;		netlogon->nt5.nt_version   = NETLOGON_NT_VERSION_1|NETLOGON_NT_VERSION_5;		netlogon->nt5.lmnt_token   = 0xFFFF;		netlogon->nt5.lm20_token   = 0xFFFF;	} else /* (version & NETLOGON_NT_VERSION_1) and all other cases */ {		netlogon->ntver = NETLOGON_NT_VERSION_1;		/* could check if the user exists */		if (user_known) {			netlogon->nt4.command      = LOGON_SAM_LOGON_RESPONSE;		} else {			netlogon->nt4.command      = LOGON_SAM_LOGON_USER_UNKNOWN;		}		netlogon->nt4.server      = pdc_name;		netlogon->nt4.user_name   = user;		netlogon->nt4.domain      = flatname;		netlogon->nt4.nt_version  = NETLOGON_NT_VERSION_1;		netlogon->nt4.lmnt_token  = 0xFFFF;		netlogon->nt4.lm20_token  = 0xFFFF;	}	return NT_STATUS_OK;}/*  handle incoming cldap requests*/void cldapd_netlogon_request(struct cldap_socket *cldap, 			     uint32_t message_id,			     struct ldb_parse_tree *tree,			     struct socket_address *src){	struct cldapd_server *cldapd = talloc_get_type(cldap->incoming.private, struct cldapd_server);	int i;	const char *domain = NULL;	const char *host = NULL;	const char *user = NULL;	const char *domain_guid = NULL;	const char *domain_sid = NULL;	int acct_control = -1;	int version = -1;	struct netlogon_samlogon_response netlogon;	NTSTATUS status = NT_STATUS_INVALID_PARAMETER;	TALLOC_CTX *tmp_ctx = talloc_new(cldap);	if (tree->operation != LDB_OP_AND) goto failed;	/* extract the query elements */	for (i=0;i<tree->u.list.num_elements;i++) {		struct ldb_parse_tree *t = tree->u.list.elements[i];		if (t->operation != LDB_OP_EQUALITY) goto failed;		if (strcasecmp(t->u.equality.attr, "DnsDomain") == 0) {			domain = talloc_strndup(tmp_ctx, 						(const char *)t->u.equality.value.data,						t->u.equality.value.length);		}		if (strcasecmp(t->u.equality.attr, "Host") == 0) {			host = talloc_strndup(tmp_ctx, 					      (const char *)t->u.equality.value.data,					      t->u.equality.value.length);		}		if (strcasecmp(t->u.equality.attr, "DomainGuid") == 0) {			NTSTATUS enc_status;			struct GUID guid;			enc_status = ldap_decode_ndr_GUID(tmp_ctx, 							  t->u.equality.value, &guid);			if (NT_STATUS_IS_OK(enc_status)) {				domain_guid = GUID_string(tmp_ctx, &guid);			}		}		if (strcasecmp(t->u.equality.attr, "DomainSid") == 0) {			domain_sid = talloc_strndup(tmp_ctx, 						    (const char *)t->u.equality.value.data,						    t->u.equality.value.length);		}		if (strcasecmp(t->u.equality.attr, "User") == 0) {			user = talloc_strndup(tmp_ctx, 					      (const char *)t->u.equality.value.data,					      t->u.equality.value.length);		}		if (strcasecmp(t->u.equality.attr, "NtVer") == 0 &&		    t->u.equality.value.length == 4) {			version = IVAL(t->u.equality.value.data, 0);		}		if (strcasecmp(t->u.equality.attr, "AAC") == 0 &&		    t->u.equality.value.length == 4) {			acct_control = IVAL(t->u.equality.value.data, 0);		}	}	if (domain_guid == NULL && domain == NULL) {		domain = lp_realm(cldapd->task->lp_ctx);	}	if (version == -1) {		goto failed;	}	DEBUG(5,("cldap netlogon query domain=%s host=%s user=%s version=%d guid=%s\n",		 domain, host, user, version, domain_guid));	status = fill_netlogon_samlogon_response(cldapd->samctx, tmp_ctx, domain, NULL, NULL, domain_guid,						 user, acct_control, src->addr, 						 version, cldapd->task->lp_ctx, &netlogon);	if (!NT_STATUS_IS_OK(status)) {		goto failed;	}	status = cldap_netlogon_reply(cldap, message_id, src, version,				      &netlogon);	if (!NT_STATUS_IS_OK(status)) {		goto failed;	}	talloc_free(tmp_ctx);	return;	failed:	DEBUG(2,("cldap netlogon query failed domain=%s host=%s version=%d - %s\n",		 domain, host, version, nt_errstr(status)));	talloc_free(tmp_ctx);	cldap_empty_reply(cldap, message_id, src);	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -