s3:winbind: Remove no longer used domain's private_data pointer
[Samba.git] / source4 / dns_server / dns_server.h
blobf4e5a61c43f78e519d60507e514c1f96eb6e50df
1 /*
2 Unix SMB/CIFS implementation.
4 DNS structures
6 Copyright (C) 2010 Kai Blin <kai@samba.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef __DNS_SERVER_H__
23 #define __DNS_SERVER_H__
25 #include "librpc/gen_ndr/dns.h"
26 #include "librpc/gen_ndr/ndr_dnsp.h"
27 #include "dnsserver_common.h"
29 struct tsocket_address;
30 struct dns_server_tkey {
31 const char *name;
32 enum dns_tkey_mode mode;
33 const char *algorithm;
34 struct auth_session_info *session_info;
35 struct gensec_security *gensec;
36 bool complete;
39 #define TKEY_BUFFER_SIZE 128
41 struct dns_server_tkey_store {
42 struct dns_server_tkey **tkeys;
43 uint16_t next_idx;
44 uint16_t size;
47 struct dns_server {
48 struct task_server *task;
49 struct ldb_context *samdb;
50 struct dns_server_zone *zones;
51 struct dns_server_tkey_store *tkeys;
52 struct cli_credentials *server_credentials;
55 struct dns_request_state {
56 TALLOC_CTX *mem_ctx;
57 uint16_t flags;
58 bool authenticated;
59 bool sign;
60 char *key_name;
61 struct dns_res_rec *tsig;
62 uint16_t tsig_error;
63 const struct tsocket_address *local_address;
64 const struct tsocket_address *remote_address;
67 struct tevent_req *dns_server_process_query_send(
68 TALLOC_CTX *mem_ctx, struct tevent_context *ev,
69 struct dns_server *dns, struct dns_request_state *req_state,
70 const struct dns_name_packet *in);
71 WERROR dns_server_process_query_recv(
72 struct tevent_req *req, TALLOC_CTX *mem_ctx,
73 struct dns_res_rec **answers, uint16_t *ancount,
74 struct dns_res_rec **nsrecs, uint16_t *nscount,
75 struct dns_res_rec **additional, uint16_t *arcount);
77 WERROR dns_server_process_update(struct dns_server *dns,
78 const struct dns_request_state *state,
79 TALLOC_CTX *mem_ctx,
80 const struct dns_name_packet *in,
81 struct dns_res_rec **prereqs, uint16_t *prereq_count,
82 struct dns_res_rec **updates, uint16_t *update_count,
83 struct dns_res_rec **additional, uint16_t *arcount);
85 bool dns_authoritative_for_zone(struct dns_server *dns,
86 const char *name);
87 const char *dns_get_authoritative_zone(struct dns_server *dns,
88 const char *name);
89 WERROR dns_lookup_records(struct dns_server *dns,
90 TALLOC_CTX *mem_ctx,
91 struct ldb_dn *dn,
92 struct dnsp_DnssrvRpcRecord **records,
93 uint16_t *rec_count);
94 WERROR dns_lookup_records_wildcard(struct dns_server *dns,
95 TALLOC_CTX *mem_ctx,
96 struct ldb_dn *dn,
97 struct dnsp_DnssrvRpcRecord **records,
98 uint16_t *rec_count);
99 WERROR dns_replace_records(struct dns_server *dns,
100 TALLOC_CTX *mem_ctx,
101 struct ldb_dn *dn,
102 bool needs_add,
103 struct dnsp_DnssrvRpcRecord *records,
104 uint16_t rec_count);
105 WERROR dns_name2dn(struct dns_server *dns,
106 TALLOC_CTX *mem_ctx,
107 const char *name,
108 struct ldb_dn **_dn);
109 struct dns_server_tkey *dns_find_tkey(struct dns_server_tkey_store *store,
110 const char *name);
111 WERROR dns_verify_tsig(struct dns_server *dns,
112 TALLOC_CTX *mem_ctx,
113 struct dns_request_state *state,
114 struct dns_name_packet *packet,
115 DATA_BLOB *in);
116 WERROR dns_sign_tsig(struct dns_server *dns,
117 TALLOC_CTX *mem_ctx,
118 struct dns_request_state *state,
119 struct dns_name_packet *packet,
120 uint16_t error);
122 #include "source4/dns_server/dnsserver_common.h"
124 #endif /* __DNS_SERVER_H__ */