-
Notifications
You must be signed in to change notification settings - Fork 7
/
alias.c
121 lines (97 loc) · 2.68 KB
/
alias.c
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
* ProFTPD: mod_vroot Alias API
* Copyright (c) 2002-2021 TJ Saunders
*
* 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; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*
* As a special exemption, TJ Saunders and other respective copyright holders
* give permission to link this program with OpenSSL, and distribute the
* resulting executable, without including the source code for OpenSSL in the
* source distribution.
*/
#include "alias.h"
static pool *alias_pool = NULL;
static pr_table_t *alias_tab = NULL;
unsigned int vroot_alias_count(void) {
int count;
count = pr_table_count(alias_tab);
if (count < 0) {
return 0;
}
return count;
}
int vroot_alias_do(int cb(const void *key_data, size_t key_datasz,
const void *value_data, size_t value_datasz, void *user_data),
void *user_data) {
int res;
if (cb == NULL) {
errno = EINVAL;
return -1;
}
res = pr_table_do(alias_tab, cb, user_data, PR_TABLE_DO_FL_ALL);
return res;
}
int vroot_alias_exists(const char *path) {
const void *v;
if (path == NULL) {
return FALSE;
}
v = pr_table_get(alias_tab, path, 0);
if (v != NULL) {
return TRUE;
}
return FALSE;
}
const char *vroot_alias_get(const char *path) {
const void *v;
if (path == NULL) {
errno = EINVAL;
return NULL;
}
v = pr_table_get(alias_tab, path, NULL);
return v;
}
int vroot_alias_add(const char *dst_path, const char *src_path) {
int res;
if (dst_path == NULL ||
src_path == NULL) {
errno = EINVAL;
return -1;
}
res = pr_table_add(alias_tab, pstrdup(alias_pool, dst_path),
pstrdup(alias_pool, src_path), 0);
return res;
}
int vroot_alias_init(pool *p) {
if (p == NULL) {
errno = EINVAL;
return -1;
}
if (alias_pool == NULL) {
alias_pool = make_sub_pool(p);
pr_pool_tag(alias_pool, "VRoot Alias Pool");
alias_tab = pr_table_alloc(alias_pool, 0);
}
return 0;
}
int vroot_alias_free(void) {
if (alias_pool != NULL) {
pr_table_empty(alias_tab);
destroy_pool(alias_pool);
alias_pool = NULL;
alias_tab = NULL;
}
return 0;
}