mirror of
https://github.com/3proxy/3proxy.git
synced 2026-05-13 13:30:12 +08:00
Some checks are pending
C/C++ CI Linux / ${{ matrix.target }} (ubuntu-24.04-arm) (push) Waiting to run
C/C++ CI Linux / ${{ matrix.target }} (ubuntu-latest) (push) Waiting to run
C/C++ CI MacOS / ${{ matrix.target }} (macos-15) (push) Waiting to run
C/C++ CI Windows / ${{ matrix.target }} (windows-2022) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (macos-15) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (ubuntu-24.04-arm) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (ubuntu-latest) (push) Waiting to run
C/C++ CI cmake / ${{ matrix.target }} (windows-2022) (push) Waiting to run
89 lines
4.4 KiB
C
89 lines
4.4 KiB
C
#include "proxy.h"
|
|
#include "blake2_compat.h"
|
|
|
|
|
|
static void char_index2hash(const struct hashtable *ht, void *index, uint8_t *hash){
|
|
blake2b_state S;
|
|
int len;
|
|
|
|
len = strlen((const char*)index);
|
|
memset(hash, 0, ht->hash_size);
|
|
if(len <= ht->hash_size) memcpy(hash, index, len);
|
|
else {
|
|
blake2b_init_3p(&S, ht->hash_size);
|
|
blake2b_update_3p(&S, index, strlen((const char*)index) + 1);
|
|
blake2b_final_3p(&S, hash, ht->hash_size);
|
|
}
|
|
}
|
|
|
|
static void param2hash_add(const struct hashtable *ht, void *index, uint8_t *hash){
|
|
blake2b_state S;
|
|
struct clientparam *param = (struct clientparam *)index;
|
|
unsigned type = param->srv->authcachetype;
|
|
int len = 0, oplen = 0, acllen = 0, ulen = 0, plen = 0, hlen = 0, a1len = 0, a2len = 0, a3len = 0, p1len=0, p2len = 0;
|
|
|
|
|
|
if((type & 2) && param->username) ulen = strlen((const char *)param->username) + 1;
|
|
if((type & 4) && param->password) plen = strlen((const char *)param->password) + 1;
|
|
if((type & 1) && !(type & 8)) a1len = SAADDRLEN(¶m->sincr);
|
|
if((type & 16)) acllen = sizeof(param->srv->acl);
|
|
if((type & 64)) a2len = SAADDRLEN(¶m->req);
|
|
if((type & 128)) p1len = 2 ;
|
|
if((type & 256) && param->hostname) hlen = strlen((const char *)param->hostname) + 1;
|
|
if((type & 512)) oplen = sizeof(param->operation);
|
|
if((type & 1024)) a3len = SAADDRLEN(¶m->srv->intsa);
|
|
if((type & 2048)) p2len = 2;
|
|
|
|
memset(hash, 0, ht->hash_size);
|
|
if(ulen + plen + a1len + acllen + a2len + p1len + hlen + oplen + a3len + p2len <= ht->hash_size){
|
|
int offset = 0;
|
|
if((type & 2) && param->username){ memcpy(hash + offset, param->username, ulen); offset += ulen; }
|
|
if((type & 4) && param->password){ memcpy(hash + offset, param->password, plen); offset += plen; }
|
|
if((type & 1) && !(type & 8)){ memcpy(hash + offset, SAADDR(¶m->sincr), a1len); offset += a1len; }
|
|
if((type & 16)){ memcpy(hash + offset, ¶m->srv->acl, acllen); offset += acllen; }
|
|
if((type & 64)){ memcpy(hash + offset, SAADDR(¶m->req), a2len); offset += a2len; }
|
|
if((type & 128)){ memcpy(hash + offset, SAPORT(¶m->req), p1len); offset += 2; }
|
|
if((type & 256) && param->hostname){ memcpy(hash + offset, param->hostname, hlen); offset += hlen; }
|
|
if((type & 512)){ memcpy(hash + offset, ¶m->operation, oplen); offset += oplen; }
|
|
if((type & 1024)){ memcpy(hash + offset, SAADDR(¶m->srv->intsa), a3len); offset += a3len; }
|
|
if((type & 2048)){ memcpy(hash + offset, SAPORT(¶m->srv->intsa), p2len); offset += 2; }
|
|
}
|
|
else {
|
|
blake2b_init_3p(&S, ht->hash_size);
|
|
if((type & 2) && param->username)blake2b_update_3p(&S, param->username, ulen);
|
|
if((type & 4) && param->password)blake2b_update_3p(&S, param->password, plen);
|
|
if((type & 1) && !(type & 8))blake2b_update_3p(&S, SAADDR(¶m->sincr), a1len);
|
|
if((type & 16))blake2b_update_3p(&S, ¶m->srv->acl, acllen);
|
|
if((type & 64))blake2b_update_3p(&S, SAADDR(¶m->req), a2len);
|
|
if((type & 128))blake2b_update_3p(&S, SAPORT(¶m->req), 2);
|
|
if((type & 256) && param->hostname)blake2b_update_3p(&S, param->hostname, hlen);
|
|
if((type & 512))blake2b_update_3p(&S, ¶m->operation, sizeof(param->operation));
|
|
if((type & 1024))blake2b_update_3p(&S, SAADDR(¶m->srv->intsa), a3len);
|
|
if((type & 2048))blake2b_update_3p(&S, SAPORT(¶m->srv->intsa), 2);
|
|
blake2b_final_3p(&S, hash, ht->hash_size);
|
|
}
|
|
memcpy(param->hash, hash, ht->hash_size);
|
|
}
|
|
|
|
void param2hash_search(const struct hashtable *ht, void *index, uint8_t *hash){
|
|
struct clientparam *param = (struct clientparam *)index;
|
|
|
|
memcpy(hash, param->hash, ht->hash_size);
|
|
}
|
|
|
|
static void udpparam2hash(const struct hashtable *ht, void *index, uint8_t *hash){
|
|
struct clientparam *param = (struct clientparam *)index;
|
|
blake2b_state S;
|
|
blake2b_init_3p(&S, ht->hash_size);
|
|
blake2b_update_3p(&S, SAADDR(¶m->srv->intsa), SAADDRLEN(¶m->srv->intsa));
|
|
blake2b_update_3p(&S, SAPORT(¶m->srv->intsa), 2);
|
|
blake2b_update_3p(&S, SAADDR(¶m->sincr), SAADDRLEN(¶m->sincr));
|
|
blake2b_update_3p(&S, SAPORT(¶m->sincr), 2);
|
|
blake2b_final_3p(&S, hash, ht->hash_size);
|
|
}
|
|
|
|
struct hashtable dns_table = {char_index2hash, char_index2hash, 4, 32};
|
|
struct hashtable dns6_table = {char_index2hash, char_index2hash, 16, 32};
|
|
struct hashtable auth_table = {param2hash_add, param2hash_search, sizeof(struct authcache), 64};
|
|
struct hashtable pwl_table = {char_index2hash, char_index2hash, 64, 64};
|