comparison src/authenticate.h @ 288:c02c4eb95f95 noffle

[svn] * src/configfile.h,src/configfile.c,docs/noffle.conf.5: Add noffle-user and noffle-group configs. * src/configfile.c,src/fetch.c,src/fetchlist.c,src/protocol.c, src/server.c: Replace strcpy() with Utl_cpyStr() where appropriate. See Debian bug 168128. * src/control.c,src/configfile.c,src/noffle.c: Replace [s]scanf("%s") with [s]scanf(MAXCHAR_FMT). * src/noffle.c: Log warning if noffle.conf is world readable. * src/noffle.c: Restrict most options to news admins; i.e. those who are root or news on running Noffle. * Makefile.in,acconfig.h,aclocal.m4,config.h.in,configure,configure.in, docs/Makefile.in,docs/noffle.conf.5,packages/Makefile.in, packages/redhat/Makefile.in,src/Makefile.am,src/Makefile.in, src/authenticate.c,src/authenticate.h,src/noffle.c,src/server.c: Add basic authentication using either Noffle-specific user file or authenticating via PAM (service 'noffle'). PAM authentication needs to run as root, so a Noffle server that needs PAM must be started by root. Helpful (?) error messages will be logged if not. Noffle will switch ruid and euid to 'news' (or whatever is configured) ASAP. * src/noffle.c: Add uid checking.
author bears
date Fri, 10 Jan 2003 23:25:45 +0000
parents
children
comparison
equal deleted inserted replaced
287:01755687c565 288:c02c4eb95f95
1 /*
2 authenticate.h
3
4 Do client authentication
5
6 $Id: authenticate.h 420 2003-01-10 23:25:45Z bears $
7 */
8
9 #ifndef AUTHENTICATE_H
10 #define AUTHENTICATE_H
11
12 #include "common.h"
13
14 enum AuthResult { AUTH_ERROR, AUTH_DISCONNECT, AUTH_FAILED, AUTH_OK };
15
16 /* Authenticate a user and password. */
17 enum AuthResult
18 Auth_authenticate( const char *user, const char *pass );
19
20 /* Open authentication session. */
21 Bool
22 Auth_open( void );
23
24 /* Authentication session now closed. */
25 void
26 Auth_close( void );
27
28 /* Check we have appropriate privs for authentication. */
29 Bool
30 Auth_checkPrivs( void );
31
32 /* Are are privs sufficient only for admin access? */
33 Bool
34 Auth_admin( void );
35
36 /* Drop any privs required for authentication. */
37 Bool
38 Auth_dropPrivs( void );
39
40 #endif