blob: 1ae5c17ecfad543fb8fc58d3ff0993705fa9a5d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* header.c - Create pre-filled header for TACACS+ request.
*
* Copyright (C) 2010, Pawel Krawczyk <pawel.krawczyk@hush.com> and
* Jeroen Nijhof <jeroen@nijhofnet.nl>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program - see the file COPYING.
*
* See `CHANGES' file for revision history.
*/
#include "tacplus.h"
#include "libtac.h"
#include "xalloc.h"
#include "magic.h"
/* Miscellaneous variables that are global, because we need
* store their values between different functions and connections.
*/
/* Session identifier. */
int session_id;
/* Encryption flag. */
int tac_encryption = 0;
/* Pointer to TACACS+ shared secret string. */
char *tac_secret = "";
/* Pointer to TACACS+ shared login string. */
char *tac_login = "pap";
/* priv_lvl */
int tac_priv_lvl = TAC_PLUS_PRIV_LVL_MIN;
/* Authentication Method */
int tac_authen_method = TAC_PLUS_AUTHEN_METH_TACACSPLUS;
/* Service requesting authentication */
int tac_authen_service = TAC_PLUS_AUTHEN_SVC_PPP;
/* additional runtime flags */
int tac_debug_enable = 0;
int tac_readtimeout_enable = 0;
/* Returns pre-filled TACACS+ packet header of given type.
* 1. you MUST fill th->datalength and th->version
* 2. you MAY fill th->encryption
* 3. you are responsible for freeing allocated header
* By default packet encryption is enabled. The version
* field depends on the TACACS+ request type and thus it
* cannot be predefined.
*/
HDR *_tac_req_header(u_char type, int cont_session) {
HDR *th;
th=(HDR *) xcalloc(1, TAC_PLUS_HDR_SIZE);
/* preset some packet options in header */
th->type=type;
th->seq_no=1; /* always 1 for request */
th->encryption=TAC_PLUS_ENCRYPTED_FLAG;
/* make session_id from pseudo-random number */
if (!cont_session)
session_id = magic();
th->session_id = htonl(session_id);
return th;
}
|