]>
git.saurik.com Git - apple/network_cmds.git/blob - timed.tproj/timed.tproj/candidate.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1985, 1993
27 * The Regents of the University of California. All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Berkeley and its contributors.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 static char sccsid
[] = "@(#)candidate.c 8.1 (Berkeley) 6/6/93";
63 #ident "$Revision: 1.1.1.1 $"
69 * `election' candidates a host as master: it is called by a slave
70 * which runs with the -M option set when its election timeout expires.
71 * Note the conservative approach: if a new timed comes up, or another
72 * candidate sends an election request, the candidature is withdrawn.
78 struct tsp
*resp
, msg
;
79 struct timeval then
, wait
;
84 /* This code can get totally confused if it gets slightly behind. For
85 * example, if readmsg() has some QUIT messages waiting from the last
86 * round, we would send an ELECTION message, get the stale QUIT,
87 * and give up. This results in network storms when several machines
92 while (0 != readmsg(TSP_REFUSE
, ANYADDR
, &wait
, net
)) {
94 fprintf(fd
, "election: discarded stale REFUSE\n");
96 while (0 != readmsg(TSP_QUIT
, ANYADDR
, &wait
, net
)) {
98 fprintf(fd
, "election: discarded stale QUIT\n");
102 syslog(LOG_INFO
, "This machine is a candidate time master");
104 fprintf(fd
, "This machine is a candidate time master\n");
105 msg
.tsp_type
= TSP_ELECTION
;
106 msg
.tsp_vers
= TSPVERSION
;
107 (void)strcpy(msg
.tsp_name
, hostname
);
109 if (sendto(sock
, (char *)&msg
, sizeof(struct tsp
), 0,
110 (struct sockaddr
*)&net
->dest_addr
,
111 sizeof(struct sockaddr
)) < 0) {
112 trace_sendto_err(net
->dest_addr
.sin_addr
);
116 (void)gettimeofday(&then
, 0);
119 (void)gettimeofday(&wait
, 0);
120 timevalsub(&wait
,&then
,&wait
);
121 resp
= readmsg(TSP_ANY
, ANYADDR
, &wait
, net
);
125 switch (resp
->tsp_type
) {
128 (void)addmach(resp
->tsp_name
, &from
,fromnet
);
134 * If another timedaemon is coming up at the same
135 * time, give up, and let it be the master.
138 && !good_host_name(resp
->tsp_name
)) {
139 (void)addmach(resp
->tsp_name
, &from
,fromnet
);
140 suppress(&from
, resp
->tsp_name
, net
);
149 * Collision: change value of election timer
150 * using exponential backoff.
153 * An exponential backoff on a delay starting at
154 * 6 to 15 minutes for a process that takes
155 * milliseconds is silly. It is particularly
156 * strange that the original code would increase
157 * the backoff without bound.
163 /* no master for another round */
164 htp
= addmach(resp
->tsp_name
,&from
,fromnet
);
165 msg
.tsp_type
= TSP_REFUSE
;
166 (void)strcpy(msg
.tsp_name
, hostname
);
167 answer
= acksend(&msg
, &htp
->addr
, htp
->name
,
168 TSP_ACK
, 0, htp
->noanswer
);
170 syslog(LOG_ERR
, "error in election from %s",
176 (void)addmach(resp
->tsp_name
, &from
,fromnet
);
185 fprintf(fd
, "candidate: ");