2 #if !defined(lint) && !defined(SABER)
3 static const char rcsid
[] = "$Id: res_update.c,v 1.1 2006/03/01 19:01:39 majka Exp $";
8 * Copyright (c) 1996-1999 by Internet Software Consortium.
10 * Permission to use, copy, modify, and distribute this software for any
11 * purpose with or without fee is hereby granted, provided that the above
12 * copyright notice and this permission notice appear in all copies.
14 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
15 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
17 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
18 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
19 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
20 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
25 * Based on the Dynamic DNS reference implementation by Viraj Bais
26 * <viraj_bais@ccm.fm.intel.com>
30 #include "port_before.h"
33 #include <sys/param.h>
34 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
39 #include <arpa/nameser.h>
44 #include <res_update.h>
54 #include "port_after.h"
56 #include "res_private.h"
59 * Separate a linked list of records into groups so that all records
60 * in a group will belong to a single zone on the nameserver.
61 * Create a dynamic update packet for each zone and send it to the
62 * nameservers for that zone, and await answer.
63 * Abort if error occurs in updating any zone.
64 * Return the number of zones updated on success, < 0 on error.
66 * On error, caller must deal with the unsynchronized zones
67 * eg. an A record might have been successfully added to the forward
68 * zone but the corresponding PTR record would be missing if error
69 * was encountered while updating the reverse zone.
73 char z_origin
[NS_MAXDNAME
];
75 union res_sockaddr_union z_nsaddrs
[MAXNS
];
78 LIST(ns_updrec
) z_rrlist
;
79 LINK(struct zonegrp
) z_link
;
82 #define ZG_F_ZONESECTADDED 0x0001
86 static void res_dprintf(const char *, ...);
90 #define DPRINTF(x) do {\
91 int save_errno = errno; \
92 if ((statp->options & RES_DEBUG) != 0) res_dprintf x; \
99 res_nupdate(res_state statp
, ns_updrec
*rrecp_in
, ns_tsig_key
*key
) {
101 u_char answer
[NS_PACKETSZ
], packet
[2*NS_PACKETSZ
];
102 struct zonegrp
*zptr
, tgrp
;
103 LIST(struct zonegrp
) zgrps
;
104 int nzones
= 0, nscount
= 0, n
;
105 union res_sockaddr_union nsaddrs
[MAXNS
];
107 /* Thread all of the updates onto a list of groups. */
109 memset(&tgrp
, 0, sizeof (tgrp
));
110 for (rrecp
= rrecp_in
; rrecp
;
111 rrecp
= LINKED(rrecp
, r_link
) ? NEXT(rrecp
, r_link
) : NULL
) {
113 /* Find the origin for it if there is one. */
114 tgrp
.z_class
= rrecp
->r_class
;
115 nscnt
= res_findzonecut2(statp
, rrecp
->r_dname
, tgrp
.z_class
,
116 RES_EXHAUSTIVE
, tgrp
.z_origin
,
117 sizeof tgrp
.z_origin
,
118 tgrp
.z_nsaddrs
, MAXNS
);
120 DPRINTF(("res_findzonecut failed (%d)", nscnt
));
123 tgrp
.z_nscount
= nscnt
;
124 /* Find the group for it if there is one. */
125 for (zptr
= HEAD(zgrps
); zptr
!= NULL
; zptr
= NEXT(zptr
, z_link
))
126 if (ns_samename(tgrp
.z_origin
, zptr
->z_origin
) == 1 &&
127 tgrp
.z_class
== zptr
->z_class
)
129 /* Make a group for it if there isn't one. */
131 zptr
= malloc(sizeof *zptr
);
133 DPRINTF(("malloc failed"));
138 INIT_LINK(zptr
, z_link
);
139 INIT_LIST(zptr
->z_rrlist
);
140 APPEND(zgrps
, zptr
, z_link
);
142 /* Thread this rrecp onto the right group. */
143 APPEND(zptr
->z_rrlist
, rrecp
, r_glink
);
146 for (zptr
= HEAD(zgrps
); zptr
!= NULL
; zptr
= NEXT(zptr
, z_link
)) {
147 /* Construct zone section and prepend it. */
148 rrecp
= res_mkupdrec(ns_s_zn
, zptr
->z_origin
,
149 zptr
->z_class
, ns_t_soa
, 0);
151 DPRINTF(("res_mkupdrec failed"));
154 PREPEND(zptr
->z_rrlist
, rrecp
, r_glink
);
155 zptr
->z_flags
|= ZG_F_ZONESECTADDED
;
157 /* Marshall the update message. */
158 n
= res_nmkupdate(statp
, HEAD(zptr
->z_rrlist
),
159 packet
, sizeof packet
);
160 DPRINTF(("res_mkupdate -> %d", n
));
164 /* Temporarily replace the resolver's nameserver set. */
165 nscount
= res_getservers(statp
, nsaddrs
, MAXNS
);
166 res_setservers(statp
, zptr
->z_nsaddrs
, zptr
->z_nscount
);
168 /* Send the update and remember the result. */
170 n
= res_nsendsigned(statp
, packet
, n
, key
,
171 answer
, sizeof answer
);
173 n
= res_nsend(statp
, packet
, n
, answer
, sizeof answer
);
175 DPRINTF(("res_nsend: send error, n=%d (%s)\n",
176 n
, strerror(errno
)));
179 if (((HEADER
*)answer
)->rcode
== ns_r_noerror
)
182 /* Restore resolver's nameserver set. */
183 res_setservers(statp
, nsaddrs
, nscount
);
187 while (!EMPTY(zgrps
)) {
189 if ((zptr
->z_flags
& ZG_F_ZONESECTADDED
) != 0)
190 res_freeupdrec(HEAD(zptr
->z_rrlist
));
191 UNLINK(zgrps
, zptr
, z_link
);
195 res_setservers(statp
, nsaddrs
, nscount
);
203 res_dprintf(const char *fmt
, ...) {
207 fputs(";; res_nupdate: ", stderr
);
208 vfprintf(stderr
, fmt
, ap
);