Source to bsd/netat/aurp_open.c
/*
* Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* The contents of this file constitute Original Code as defined in and
* are subject to the Apple Public Source License Version 1.1 (the
* "License"). You may not use this file except in compliance with the
* License. Please obtain a copy of the License at
* http://www.apple.com/publicsource and read it before using this file.
*
* This Original Code and all software distributed under the License are
* distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
* License for the specific language governing rights and limitations
* under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
/*
* Copyright (c) 1996 Apple Computer, Inc.
*
* Created April 8, 1996 by Tuyen Nguyen
* Modified, March 17, 1997 by Tuyen Nguyen for MacOSX.
*
* File: open.c
*/
#include <sys/errno.h>
#include <sys/types.h>
#include <sys/param.h>
#include <machine/spl.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/filedesc.h>
#include <sys/fcntl.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <net/if.h>
#include <netat/sysglue.h>
#include <netat/appletalk.h>
#include <netat/at_var.h>
#include <netat/routing_tables.h>
#include <netat/at_pcb.h>
#include <netat/aurp.h>
#include <netat/debug.h>
/* */
void AURPsndOpenReq(state)
aurp_state_t *state;
{
int msize;
gbuf_t *m;
aurp_hdr_t *hdrp;
if (aurp_gref == 0)
return;
if (state->rcv_retry && (state->rcv_state != AURPSTATE_WaitingForOpenRsp))
return;
/* stop trying if the retry count exceeds the maximum value */
if (++state->rcv_retry > AURP_MaxRetry) {
dPrintf(D_M_AURP, D_L_WARNING,
("AURPsndOpenReq: no response, node %u\n",
state->rem_node));
state->rcv_state = AURPSTATE_Unconnected;
state->rcv_tmo = 0;
state->rcv_retry = 0;
return;
}
msize = sizeof(aurp_hdr_t) + 3;
if ((m = (gbuf_t *)gbuf_alloc(msize, PRI_MED)) != 0) {
gbuf_wset(m,msize);
/* construct the open request packet */
hdrp = (aurp_hdr_t *)gbuf_rptr(m);
if (state->rcv_retry > 1)
hdrp->connection_id = state->rcv_connection_id;
else {
if (++rcv_connection_id == 0)
rcv_connection_id = 1;
hdrp->connection_id = rcv_connection_id;
}
hdrp->sequence_number = 0;
hdrp->command_code = AURPCMD_OpenReq;
hdrp->flags = (AURPFLG_NA | AURPFLG_ND | AURPFLG_NDC | AURPFLG_ZC);
*(short *)(hdrp+1) = AURP_Version;
((char *)(hdrp+1))[2] = 0; /* option count */
/* update state info */
state->rcv_connection_id = hdrp->connection_id;
state->rcv_state = AURPSTATE_WaitingForOpenRsp;
/* send the packet */
dPrintf(D_M_AURP, D_L_TRACE,
("AURPsndOpenReq: sending AURPCMD_OpenReq, node %u\n",
state->rem_node));
AURPsend(m, AUD_AURP, state->rem_node);
}
/* start the retry timer */
timeout(AURPsndOpenReq, state, AURP_RetryInterval*HZ);
state->rcv_tmo = 1;
}
/* */
void AURPrcvOpenReq(state, m)
aurp_state_t *state;
gbuf_t *m;
{
short rc, version;
aurp_hdr_t *hdrp = (aurp_hdr_t *)gbuf_rptr(m);
unsigned short sui = hdrp->flags;
/* make sure we're in a valid state to accept it */
if ((update_tmo == 0) || ((state->snd_state != AURPSTATE_Unconnected) &&
(state->snd_state != AURPSTATE_Connected))) {
dPrintf(D_M_AURP, D_L_WARNING,
("AURPrcvOpenReq: unexpected request, update_tmo=0x%x, snd_state=%u\n", (unsigned int) update_tmo, state->snd_state));
gbuf_freem(m);
return;
}
/* check for the correct version number */
version = *(short *)(hdrp+1);
if (version != AURP_Version) {
dPrintf(D_M_AURP, D_L_WARNING,
("AURPrcvOpenReq: invalid version number %d, expected %d\n", version, AURP_Version));
rc = AURPERR_InvalidVersionNumber;
} else
rc = (short)AURP_UpdateRate;
/* construct the open response packet */
gbuf_wset(m,sizeof(aurp_hdr_t)+sizeof(short));
hdrp->command_code = AURPCMD_OpenRsp;
hdrp->flags = 0;
*(short *)(hdrp+1) = rc;
((char *)(hdrp+1))[2] = 0; /* option count */
/*
* reset if we're in the Connected state and this is
* a completely new open request
*/
if ((state->snd_state == AURPSTATE_Connected) &&
((state->snd_connection_id != hdrp->connection_id) ||
(state->snd_sequence_number != AURP_FirstSeqNum))) {
extern void AURPsndTickle();
if (state->rcv_state == AURPSTATE_Connected) {
state->rcv_state = AURPSTATE_Unconnected;
untimeout(AURPsndTickle, state);
}
state->snd_state = AURPSTATE_Unconnected;
AURPcleanup(state);
AURPpurgeri(state->rem_node);
}
/* update state info */
if (state->snd_state == AURPSTATE_Unconnected) {
state->snd_state = AURPSTATE_Connected;
state->snd_sui = sui;
state->snd_connection_id = hdrp->connection_id;
state->snd_sequence_number = AURP_FirstSeqNum;
}
/* send the packet */
AURPsend(m, AUD_AURP, state->rem_node);
/* open connection for the data receiver side if not yet connected */
if (state->rcv_state == AURPSTATE_Unconnected) {
state->rcv_retry = 0;
state->tickle_retry = 0;
state->rcv_sequence_number = 0;
AURPsndOpenReq(state);
}
}
/* */
void AURPrcvOpenRsp(state, m)
aurp_state_t *state;
gbuf_t *m;
{
extern void AURPsndTickle();
short rc;
aurp_hdr_t *hdrp = (aurp_hdr_t *)gbuf_rptr(m);
/* make sure we're in a valid state to accept it */
if (state->rcv_state != AURPSTATE_WaitingForOpenRsp) {
dPrintf(D_M_AURP, D_L_WARNING,
("AURPrcvOpenRsp: unexpected response\n"));
gbuf_freem(m);
return;
}
/* check for the correct connection id */
if (hdrp->connection_id != state->rcv_connection_id) {
dPrintf(D_M_AURP, D_L_WARNING,
("AURPrcvOpenRsp: invalid connection id, r=%d, m=%d\n",
hdrp->connection_id, state->rcv_connection_id));
gbuf_freem(m);
return;
}
/* cancel the retry timer */
untimeout(AURPsndOpenReq, state);
state->rcv_tmo = 0;
state->rcv_retry = 0;
/* update state info */
state->rcv_sequence_number = AURP_FirstSeqNum;
state->rcv_env = hdrp->flags;
/* check for error */
rc = *(short *)(hdrp+1);
gbuf_freem(m);
if (rc < 0) {
dPrintf(D_M_AURP, D_L_WARNING,
("AURPrcvOpenRsp: error=%d\n", rc));
return;
}
/* update state info */
state->rcv_update_rate = (unsigned short)rc;
state->rcv_state = AURPSTATE_Connected;
dPrintf(D_M_AURP, D_L_TRACE, ("AURPrcvOpenRsp: moved rcv_state to AURPSTATE_Connected\n"));
/* start tickle */
timeout(AURPsndTickle, state, AURP_TickleRetryInterval*HZ);
/* get routing info */
AURPsndRIReq(state);
}