Adding challenge/response authentication to network protocol. Build is currently broken until gsasl integration is complete.

This commit is contained in:
lotodore
2009-10-10 20:24:48 +00:00
parent 51e393823a
commit 730f81129b
190 changed files with 604 additions and 489 deletions
+16 -63
View File
@@ -2,6 +2,7 @@
* Generated by asn1c-0.9.22 (http://lionet.info/asn1c)
* From ASN.1 module "POKERTH-PROTOCOL"
* found in "../../../docs/pokerth.asn1"
* `asn1c -fnative-types`
*/
#include <asn_internal.h>
@@ -9,9 +10,9 @@
#include "AuthenticatedLogin.h"
static int
memb_playerName_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
memb_clientUserData_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
const UTF8String_t *st = (const UTF8String_t *)sptr;
const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
size_t size;
if(!sptr) {
@@ -21,47 +22,9 @@ memb_playerName_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
return -1;
}
size = UTF8String_length(st);
if((ssize_t)size < 0) {
_ASN_CTFAIL(app_key, td, sptr,
"%s: UTF-8: broken encoding (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
size = st->size;
if((size >= 1 && size <= 32)) {
/* Constraint check succeeded */
return 0;
} else {
_ASN_CTFAIL(app_key, td, sptr,
"%s: constraint failed (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
}
static int
memb_password_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
const UTF8String_t *st = (const UTF8String_t *)sptr;
size_t size;
if(!sptr) {
_ASN_CTFAIL(app_key, td, sptr,
"%s: value not given (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
size = UTF8String_length(st);
if((ssize_t)size < 0) {
_ASN_CTFAIL(app_key, td, sptr,
"%s: UTF-8: broken encoding (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
if((size >= 1 && size <= 32)) {
if((size >= 1 && size <= 256)) {
/* Constraint check succeeded */
return 0;
} else {
@@ -73,23 +36,14 @@ memb_password_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
}
static asn_TYPE_member_t asn_MBR_AuthenticatedLogin_1[] = {
{ ATF_NOFLAGS, 0, offsetof(struct AuthenticatedLogin, playerName),
(ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
{ ATF_NOFLAGS, 0, offsetof(struct AuthenticatedLogin, clientUserData),
(ASN_TAG_CLASS_UNIVERSAL | (4 << 2)),
0,
&asn_DEF_UTF8String,
memb_playerName_constraint_1,
&asn_DEF_OCTET_STRING,
memb_clientUserData_constraint_1,
0, /* PER is not compiled, use -gen-PER */
0,
"playerName"
},
{ ATF_NOFLAGS, 0, offsetof(struct AuthenticatedLogin, password),
(ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
0,
&asn_DEF_UTF8String,
memb_password_constraint_1,
0, /* PER is not compiled, use -gen-PER */
0,
"password"
"clientUserData"
},
{ ATF_POINTER, 1, offsetof(struct AuthenticatedLogin, avatar),
(ASN_TAG_CLASS_UNIVERSAL | (4 << 2)),
@@ -105,18 +59,17 @@ static ber_tlv_tag_t asn_DEF_AuthenticatedLogin_tags_1[] = {
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
};
static asn_TYPE_tag2member_t asn_MAP_AuthenticatedLogin_tag2el_1[] = {
{ (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 2, 0, 0 }, /* avatar at 94 */
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 1 }, /* playerName at 92 */
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, -1, 0 } /* password at 93 */
{ (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 0, 0, 1 }, /* clientUserData at 91 */
{ (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 1, -1, 0 } /* avatar at 92 */
};
static asn_SEQUENCE_specifics_t asn_SPC_AuthenticatedLogin_specs_1 = {
sizeof(struct AuthenticatedLogin),
offsetof(struct AuthenticatedLogin, _asn_ctx),
asn_MAP_AuthenticatedLogin_tag2el_1,
3, /* Count of tags in the map */
2, /* Count of tags in the map */
0, 0, 0, /* Optional elements (not needed) */
2, /* Start extensions */
4 /* Stop extensions */
1, /* Start extensions */
3 /* Stop extensions */
};
asn_TYPE_descriptor_t asn_DEF_AuthenticatedLogin = {
"AuthenticatedLogin",
@@ -138,7 +91,7 @@ asn_TYPE_descriptor_t asn_DEF_AuthenticatedLogin = {
/sizeof(asn_DEF_AuthenticatedLogin_tags_1[0]), /* 1 */
0, /* No PER visible constraints */
asn_MBR_AuthenticatedLogin_1,
3, /* Elements count */
2, /* Elements count */
&asn_SPC_AuthenticatedLogin_specs_1 /* Additional specs */
};