[BACK]Return to session.c CVS log [TXT][DIR] Up to [local] / src / usr.sbin / pppoe

File: [local] / src / usr.sbin / pppoe / Attic / session.c (download)

Revision 1.3, Thu May 6 20:29:04 2004 UTC (20 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.2: +1 -21 lines

knf and other cleanups

/*	$OpenBSD: session.c,v 1.3 2004/05/06 20:29:04 deraadt Exp $	*/

/*
 * Copyright (c) 2000 Network Security Technologies, Inc. http://www.netsec.net
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdio.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_types.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <net/bpf.h>
#include <errno.h>
#include <string.h>
#include <err.h>
#include <fcntl.h>
#include <unistd.h>
#include <sysexits.h>
#include <stdlib.h>

#include "pppoe.h"

struct pppoe_session_master session_master;

void
session_destroy(struct pppoe_session *s)
{
	if (s->s_fd != -1)
		close(s->s_fd);
	LIST_REMOVE(s, s_next);
	free(s);
}

struct pppoe_session *
session_new(struct ether_addr *ea)
{
	struct pppoe_session *s;
	u_int32_t x;
	u_int16_t id = 1;
	int tries = 1000;

	if (session_master.sm_nsessions == PPPOE_MAXSESSIONS)
		return (NULL);

	while (tries--) {
		x = cookie_bake();
		id = ((x >> 16) & 0xffff) ^ (x & 0xffff);
		s = LIST_FIRST(&session_master.sm_sessions);
		while (s) {
			if (memcmp(ea, &s->s_ea, ETHER_ADDR_LEN) == 0 &&
			    s->s_id == id)
				break;
			s = LIST_NEXT(s, s_next);
		}
		if (s == NULL)
			break;
	}
	if (tries == 0)
		return (NULL);

	s = (struct pppoe_session *)malloc(sizeof(*s));
	if (s == NULL)
		return (NULL);

	s->s_id = id;
	s->s_fd = -1;
	s->s_first = 1;
	memcpy(&s->s_ea, ea, ETHER_ADDR_LEN);
	LIST_INSERT_HEAD(&session_master.sm_sessions, s, s_next);

	return (s);
}

struct pppoe_session *
session_find_eaid(struct ether_addr *ea, u_int16_t id)
{
	struct pppoe_session *s;

	s = LIST_FIRST(&session_master.sm_sessions);
	while (s) {
		if (memcmp(ea, &s->s_ea, ETHER_ADDR_LEN) == 0 && s->s_id == id)
			return (s);
		s = LIST_NEXT(s, s_next);
	}
	return (NULL);
}