~ubuntu-branches/ubuntu/hardy/linux-ftpd-ssl/hardy

« back to all changes in this revision

Viewing changes to ftpd/logutmp.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2002-03-23 12:18:50 UTC
  • Revision ID: james.westby@ubuntu.com-20020323121850-v1q5cjdrp8ozukes
Tags: upstream-0.17.12+0.3
ImportĀ upstreamĀ versionĀ 0.17.12+0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Portions Copyright (c) 1988, 1993
 
3
 *      The Regents of the University of California.  All rights reserved.
 
4
 * Portions Copyright (c) 1996, Jason Downs.  All rights reserved.
 
5
 *
 
6
 * Redistribution and use in source and binary forms, with or without
 
7
 * modification, are permitted provided that the following conditions
 
8
 * are met:
 
9
 * 1. Redistributions of source code must retain the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer.
 
11
 * 2. Redistributions in binary form must reproduce the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer in the
 
13
 *    documentation and/or other materials provided with the distribution.
 
14
 * 3. All advertising materials mentioning features or use of this software
 
15
 *    must display the following acknowledgement:
 
16
 *      This product includes software developed by the University of
 
17
 *      California, Berkeley and its contributors.
 
18
 * 4. Neither the name of the University nor the names of its contributors
 
19
 *    may be used to endorse or promote products derived from this software
 
20
 *    without specific prior written permission.
 
21
 *
 
22
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
23
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
24
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
25
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
26
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
27
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
28
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
29
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
30
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
31
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
32
 * SUCH DAMAGE.
 
33
 */
 
34
 
 
35
/*
 
36
 * From: OpenBSD: logutmp.c,v 1.1 1996/06/18 10:09:23 downsj Exp
 
37
 * From: OpenBSD: logutmp.c,v 1.2 1998/07/13 02:11:17 millert Exp
 
38
 */
 
39
char logutmp_rcsid[] =
 
40
  "$Id: logutmp.c,v 1.4 1999/07/16 01:12:54 dholland Exp $";
 
41
 
 
42
#include <sys/types.h>
 
43
 
 
44
#include <fcntl.h>
 
45
#include <unistd.h>
 
46
#include <stdlib.h>
 
47
#include <utmp.h>
 
48
#include <stdio.h>
 
49
#include <string.h>
 
50
#ifndef __linux__
 
51
#include <ttyent.h>
 
52
#endif
 
53
#include "extern.h"
 
54
 
 
55
typedef struct utmp UTMP;
 
56
 
 
57
#ifndef __linux__
 
58
static int fd = -1;
 
59
static int topslot = -1;
 
60
#endif
 
61
 
 
62
/*
 
63
 * Special versions of login()/logout() which hold the utmp file open,
 
64
 * for use with ftpd.
 
65
 */
 
66
 
 
67
void
 
68
login(const UTMP *ut)
 
69
{
 
70
#ifndef __linux__
 
71
        UTMP ubuf;
 
72
 
 
73
        /*
 
74
         * First, loop through /etc/ttys, if needed, to initialize the
 
75
         * top of the tty slots, since ftpd has no tty.
 
76
         */
 
77
        if (topslot < 0) {
 
78
                topslot = 0;
 
79
                while (getttyent() != (struct ttyent *)NULL)
 
80
                        topslot++;
 
81
        }
 
82
        if ((topslot < 0) || ((fd < 0)
 
83
            && (fd = open(_PATH_UTMP, O_RDWR|O_CREAT, 0644)) < 0))
 
84
                return;
 
85
 
 
86
        /*
 
87
         * Now find a slot that's not in use...
 
88
         */
 
89
        (void)lseek(fd, (off_t)(topslot * sizeof(UTMP)), SEEK_SET);
 
90
 
 
91
        while (1) {
 
92
                if (read(fd, &ubuf, sizeof(UTMP)) == sizeof(UTMP)) {
 
93
                        if (!ubuf.ut_name[0]) {
 
94
                                (void)lseek(fd, -(off_t)sizeof(UTMP), SEEK_CUR);
 
95
                                break;
 
96
                        }
 
97
                        topslot++;
 
98
                } else {
 
99
                        (void)lseek(fd, (off_t)(topslot * sizeof(UTMP)), SEEK_SET);
 
100
                        break;
 
101
                }
 
102
        }
 
103
 
 
104
        (void)write(fd, ut, sizeof(UTMP));
 
105
#else
 
106
        (void)ut;
 
107
#endif
 
108
}
 
109
 
 
110
int
 
111
logout(register const char *line)
 
112
{
 
113
#ifndef __linux__
 
114
        UTMP ut;
 
115
        int rval;
 
116
 
 
117
        rval = 0;
 
118
        if (fd < 0)
 
119
                return(rval);
 
120
 
 
121
        (void)lseek(fd, 0, SEEK_SET);
 
122
 
 
123
        while (read(fd, &ut, sizeof(UTMP)) == sizeof(UTMP)) {
 
124
                if (!ut.ut_name[0]
 
125
                    || strncmp(ut.ut_line, line, UT_LINESIZE))
 
126
                        continue;
 
127
                bzero(ut.ut_name, UT_NAMESIZE);
 
128
                bzero(ut.ut_host, UT_HOSTSIZE);
 
129
                (void)time(&ut.ut_time);
 
130
                (void)lseek(fd, -(off_t)sizeof(UTMP), SEEK_CUR);
 
131
                (void)write(fd, &ut, sizeof(UTMP));
 
132
                rval = 1;
 
133
        }
 
134
        return(rval);
 
135
#else
 
136
        (void)line;
 
137
        return 1;
 
138
#endif
 
139
}