mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 00:37:00 +08:00
Based on suggestions by Niels Peen. That adds: Calling-Station-Id in auth message, and Service-Type, Framed-Protocol, Framed-IP-Address, Acct-Authentic, NAS-Port-Type, Acct-Session-Time in acct messages.
54 lines
2.0 KiB
C
54 lines
2.0 KiB
C
/*
|
|
* Copyright (C) 2013 Nikos Mavrogiannopoulos
|
|
*
|
|
* Author: Nikos Mavrogiannopoulos
|
|
*
|
|
* This file is part of ocserv.
|
|
*
|
|
* The GnuTLS is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
#ifndef AUTH_H
|
|
# define AUTH_H
|
|
|
|
#include <main.h>
|
|
#include <sec-mod.h>
|
|
|
|
#define MAX_AUTH_REQS 8
|
|
#define MAX_GROUPS 32
|
|
|
|
struct auth_mod_st {
|
|
unsigned int type;
|
|
void (*global_init)(void *pool, void* additional);
|
|
void (*global_deinit)(void);
|
|
int (*auth_init)(void** ctx, void *pool, const char* username, const char* ip, void* additional);
|
|
int (*auth_msg)(void* ctx, char* msg, size_t msg_size);
|
|
int (*auth_pass)(void* ctx, const char* pass, unsigned pass_len);
|
|
int (*auth_group)(void* ctx, const char *suggested, char *groupname, int groupname_size);
|
|
int (*auth_user)(void* ctx, char *groupname, int groupname_size);
|
|
|
|
int (*open_session)(void *ctx, const void *sid, unsigned sid_size); /* optional, may be null */
|
|
void (*session_stats)(void *ctx, struct stats_st *stats); /* optional, may be null */
|
|
void (*close_session)(void *ctx, struct stats_st *stats); /* optional may be null */
|
|
|
|
void (*auth_deinit)(void* ctx);
|
|
void (*group_list)(void *pool, void *additional, char ***groupname, unsigned *groupname_size);
|
|
};
|
|
|
|
void main_auth_init(main_server_st *s);
|
|
void proc_auth_deinit(main_server_st* s, struct proc_st* proc);
|
|
|
|
/* The authentication with the worker thread is shown in ipc.proto.
|
|
*/
|
|
#endif
|