-
Notifications
You must be signed in to change notification settings - Fork 78
/
util.h
76 lines (66 loc) · 1.99 KB
/
util.h
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
/*
* Copyright (C) 2014-2019 Yubico AB - See COPYING
*/
#ifndef UTIL_H
#define UTIL_H
#include <stdio.h>
#include <security/pam_appl.h>
#define BUFSIZE 1024
#define MAX_DEVS 24
#define DEFAULT_AUTHFILE_DIR_VAR "XDG_CONFIG_HOME"
#define DEFAULT_AUTHFILE "Yubico/u2f_keys"
#define DEFAULT_AUTHFILE_SSH "id_ecdsa_sk"
#define DEFAULT_AUTHFILE_DIR ".config"
#define DEFAULT_AUTHFILE_DIR_SSH ".ssh"
#define DEFAULT_AUTHPENDING_FILE_PATH "/var/run/user/%d/pam-u2f-authpending"
#define DEFAULT_PROMPT "Insert your U2F device, then press ENTER."
#define DEFAULT_CUE "Please touch the device."
#define DEFAULT_ORIGIN_PREFIX "pam://"
#define SSH_ORIGIN "ssh:"
#define DEVLIST_LEN 64
typedef struct {
unsigned max_devs;
int manual;
int debug;
int nouserok;
int openasuser;
int alwaysok;
int interactive;
int cue;
int nodetect;
int userpresence;
int userverification;
int pinverification;
int sshformat;
int expand;
const char *auth_file;
const char *authpending_file;
const char *origin;
const char *appid;
const char *prompt;
const char *cue_prompt;
FILE *debug_file;
} cfg_t;
typedef struct {
char *publicKey;
char *keyHandle;
char *coseType;
char *attributes;
int old_format;
} device_t;
int get_devices_from_authfile(const cfg_t *cfg, const char *username,
device_t *devices, unsigned *n_devs);
void free_devices(device_t *devices, const unsigned n_devs);
int do_authentication(const cfg_t *cfg, const device_t *devices,
const unsigned n_devs, pam_handle_t *pamh);
int do_manual_authentication(const cfg_t *cfg, const device_t *devices,
const unsigned n_devs, pam_handle_t *pamh);
char *converse(pam_handle_t *pamh, int echocode, const char *prompt);
int random_bytes(void *, size_t);
int cose_type(const char *, int *);
const char *cose_string(int);
char *expand_variables(const char *, const char *);
#if !defined(HAVE_EXPLICIT_BZERO)
void explicit_bzero(void *, size_t);
#endif
#endif /* UTIL_H */