Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
7649fdbc
Commit
7649fdbc
authored
Dec 02, 2023
by
v0-e
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jer: ENUMERATED compliant decoding
parent
7e49203c
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
179 additions
and
6 deletions
+179
-6
skeletons/ENUMERATED.c
skeletons/ENUMERATED.c
+1
-1
skeletons/ENUMERATED.h
skeletons/ENUMERATED.h
+1
-1
skeletons/ENUMERATED_jer.c
skeletons/ENUMERATED_jer.c
+125
-0
skeletons/INTEGER_jer.c
skeletons/INTEGER_jer.c
+1
-1
skeletons/Makefile.am
skeletons/Makefile.am
+1
-0
skeletons/NativeEnumerated.c
skeletons/NativeEnumerated.c
+1
-1
skeletons/NativeEnumerated.h
skeletons/NativeEnumerated.h
+2
-1
skeletons/NativeEnumerated_jer.c
skeletons/NativeEnumerated_jer.c
+45
-0
skeletons/file-dependencies
skeletons/file-dependencies
+2
-1
No files found.
skeletons/ENUMERATED.c
View file @
7649fdbc
...
@@ -35,7 +35,7 @@ asn_TYPE_operation_t asn_OP_ENUMERATED = {
...
@@ -35,7 +35,7 @@ asn_TYPE_operation_t asn_OP_ENUMERATED = {
0
,
0
,
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#if !defined(ASN_DISABLE_JER_SUPPORT)
#if !defined(ASN_DISABLE_JER_SUPPORT)
INTEGER
_decode_jer
,
ENUMERATED
_decode_jer
,
INTEGER_encode_jer
,
INTEGER_encode_jer
,
#else
#else
0
,
0
,
...
...
skeletons/ENUMERATED.h
View file @
7649fdbc
...
@@ -37,7 +37,7 @@ extern asn_TYPE_operation_t asn_OP_ENUMERATED;
...
@@ -37,7 +37,7 @@ extern asn_TYPE_operation_t asn_OP_ENUMERATED;
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#if !defined(ASN_DISABLE_JER_SUPPORT)
#if !defined(ASN_DISABLE_JER_SUPPORT)
#define ENUMERATED_decode_jer INTEGER_decode_jer
jer_type_decoder_f
ENUMERATED_decode_jer
;
#define ENUMERATED_encode_jer INTEGER_encode_jer
#define ENUMERATED_encode_jer INTEGER_encode_jer
#endif
/* !defined(ASN_DISABLE_JER_SUPPORT) */
#endif
/* !defined(ASN_DISABLE_JER_SUPPORT) */
...
...
skeletons/ENUMERATED_jer.c
0 → 100644
View file @
7649fdbc
/*
* Copyright (c) 2017 Lev Walkin <vlm@lionet.info>.
* All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#include <asn_internal.h>
#include <ENUMERATED.h>
#include <INTEGER.h>
struct
e2v_key
{
const
char
*
start
;
const
char
*
stop
;
const
asn_INTEGER_enum_map_t
*
vemap
;
const
unsigned
int
*
evmap
;
};
static
int
ENUMERATED__jer_compar_enum2value
(
const
void
*
kp
,
const
void
*
am
)
{
const
struct
e2v_key
*
key
=
(
const
struct
e2v_key
*
)
kp
;
const
asn_INTEGER_enum_map_t
*
el
=
(
const
asn_INTEGER_enum_map_t
*
)
am
;
const
char
*
ptr
,
*
end
,
*
name
;
/* Remap the element (sort by different criterion) */
el
=
key
->
vemap
+
key
->
evmap
[
el
-
key
->
vemap
];
/* Compare strings */
for
(
ptr
=
key
->
start
,
end
=
key
->
stop
,
name
=
el
->
enum_name
;
ptr
<
end
;
ptr
++
,
name
++
)
{
if
(
*
ptr
!=
*
name
||
!*
name
)
return
*
(
const
unsigned
char
*
)
ptr
-
*
(
const
unsigned
char
*
)
name
;
}
return
name
[
0
]
?
-
1
:
0
;
}
static
const
asn_INTEGER_enum_map_t
*
ENUMERATED_jer_map_enum2value
(
const
asn_INTEGER_specifics_t
*
specs
,
const
char
*
lstart
,
const
char
*
lstop
)
{
const
asn_INTEGER_enum_map_t
*
el_found
;
int
count
=
specs
?
specs
->
map_count
:
0
;
struct
e2v_key
key
;
const
char
*
lp
;
if
(
!
count
)
return
NULL
;
/* Guaranteed: assert(lstart < lstop); */
/* Figure out the tag name */
for
(
lstart
++
,
lp
=
lstart
;
lp
<
lstop
;
lp
++
)
{
switch
(
*
lp
)
{
case
9
:
case
10
:
case
11
:
case
12
:
case
13
:
case
32
:
/* WSP */
case
0x22
:
/* '"' */
break
;
default:
continue
;
}
break
;
}
if
(
lp
==
lstop
)
return
NULL
;
/* No tag found */
lstop
=
lp
;
key
.
start
=
lstart
;
key
.
stop
=
lstop
;
key
.
vemap
=
specs
->
value2enum
;
key
.
evmap
=
specs
->
enum2value
;
el_found
=
(
asn_INTEGER_enum_map_t
*
)
bsearch
(
&
key
,
specs
->
value2enum
,
count
,
sizeof
(
specs
->
value2enum
[
0
]),
ENUMERATED__jer_compar_enum2value
);
if
(
el_found
)
{
/* Remap enum2value into value2enum */
el_found
=
key
.
vemap
+
key
.
evmap
[
el_found
-
key
.
vemap
];
}
return
el_found
;
}
static
enum
jer_pbd_rval
ENUMERATED__jer_body_decode
(
const
asn_TYPE_descriptor_t
*
td
,
void
*
sptr
,
const
void
*
chunk_buf
,
size_t
chunk_size
)
{
INTEGER_t
*
st
=
(
INTEGER_t
*
)
sptr
;
intmax_t
dec_value
;
const
char
*
lp
;
const
char
*
lstart
=
(
const
char
*
)
chunk_buf
;
const
char
*
lstop
=
lstart
+
chunk_size
;
int
decoded
=
0
;
for
(
lp
=
lstart
;
lp
<
lstop
;
++
lp
)
{
if
(
*
lp
==
0x22
/* '"' */
)
{
const
asn_INTEGER_enum_map_t
*
el
;
el
=
ENUMERATED_jer_map_enum2value
(
(
const
asn_INTEGER_specifics_t
*
)
td
->
specifics
,
lstart
,
lstop
);
if
(
el
)
{
ASN_DEBUG
(
"Found
\"
%s
\"
=> %ld"
,
el
->
enum_name
,
el
->
nat_value
);
dec_value
=
el
->
nat_value
;
decoded
=
1
;
lp
=
lstop
-
1
;
continue
;
}
ASN_DEBUG
(
"Unknown identifier for ENUMERATED"
);
}
else
{
continue
;
}
}
if
(
!
decoded
)
{
return
JPBD_BROKEN_ENCODING
;;
}
/*
* Convert the result of parsing of enumeration into a BER representation.
*/
if
(
asn_imax2INTEGER
(
st
,
dec_value
))
{
ASN_DEBUG
(
"ENUMERATED decode %s conversion failed"
,
td
->
name
);
return
JPBD_SYSTEM_FAILURE
;
}
return
JPBD_BODY_CONSUMED
;
}
asn_dec_rval_t
ENUMERATED_decode_jer
(
const
asn_codec_ctx_t
*
opt_codec_ctx
,
const
asn_TYPE_descriptor_t
*
td
,
void
**
sptr
,
const
char
*
opt_mname
,
const
void
*
buf_ptr
,
size_t
size
)
{
return
jer_decode_primitive
(
opt_codec_ctx
,
td
,
sptr
,
sizeof
(
INTEGER_t
),
opt_mname
,
buf_ptr
,
size
,
ENUMERATED__jer_body_decode
);
}
skeletons/INTEGER_jer.c
View file @
7649fdbc
...
@@ -31,7 +31,7 @@ INTEGER_jer_st_prealloc(INTEGER_t *st, int min_size) {
...
@@ -31,7 +31,7 @@ INTEGER_jer_st_prealloc(INTEGER_t *st, int min_size) {
}
}
}
}
/*
/*
* Decode the chunk of
XML
text encoding INTEGER.
* Decode the chunk of
JSON
text encoding INTEGER.
*/
*/
static
enum
jer_pbd_rval
static
enum
jer_pbd_rval
INTEGER__jer_body_decode
(
const
asn_TYPE_descriptor_t
*
td
,
void
*
sptr
,
INTEGER__jer_body_decode
(
const
asn_TYPE_descriptor_t
*
td
,
void
*
sptr
,
...
...
skeletons/Makefile.am
View file @
7649fdbc
...
@@ -127,6 +127,7 @@ libasn1cskeletons_la_SOURCES = \
...
@@ -127,6 +127,7 @@ libasn1cskeletons_la_SOURCES = \
BOOLEAN_xer.c
\
BOOLEAN_xer.c
\
BOOLEAN_jer.c
\
BOOLEAN_jer.c
\
ENUMERATED_aper.c
\
ENUMERATED_aper.c
\
ENUMERATED_jer.c
\
ENUMERATED_oer.c
\
ENUMERATED_oer.c
\
ENUMERATED_uper.c
\
ENUMERATED_uper.c
\
GeneralizedTime_ber.c
\
GeneralizedTime_ber.c
\
...
...
skeletons/NativeEnumerated.c
View file @
7649fdbc
...
@@ -41,7 +41,7 @@ asn_TYPE_operation_t asn_OP_NativeEnumerated = {
...
@@ -41,7 +41,7 @@ asn_TYPE_operation_t asn_OP_NativeEnumerated = {
0
,
0
,
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#if !defined(ASN_DISABLE_JER_SUPPORT)
#if !defined(ASN_DISABLE_JER_SUPPORT)
Native
Integer
_decode_jer
,
Native
Enumerated
_decode_jer
,
NativeEnumerated_encode_jer
,
NativeEnumerated_encode_jer
,
#else
#else
0
,
0
,
...
...
skeletons/NativeEnumerated.h
View file @
7649fdbc
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
#define _NativeEnumerated_H_
#define _NativeEnumerated_H_
#include <NativeInteger.h>
#include <NativeInteger.h>
#include <ENUMERATED.h>
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
...
@@ -42,7 +43,7 @@ xer_type_encoder_f NativeEnumerated_encode_xer;
...
@@ -42,7 +43,7 @@ xer_type_encoder_f NativeEnumerated_encode_xer;
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#endif
/* !defined(ASN_DISABLE_XER_SUPPORT) */
#if !defined(ASN_DISABLE_JER_SUPPORT)
#if !defined(ASN_DISABLE_JER_SUPPORT)
#define NativeEnumerated_decode_jer NativeInteger_decode_jer
jer_type_decoder_f
NativeEnumerated_decode_jer
;
jer_type_encoder_f
NativeEnumerated_encode_jer
;
jer_type_encoder_f
NativeEnumerated_encode_jer
;
#endif
/* !defined(ASN_DISABLE_JER_SUPPORT) */
#endif
/* !defined(ASN_DISABLE_JER_SUPPORT) */
...
...
skeletons/NativeEnumerated_jer.c
View file @
7649fdbc
...
@@ -6,6 +6,51 @@
...
@@ -6,6 +6,51 @@
#include <asn_internal.h>
#include <asn_internal.h>
#include <NativeEnumerated.h>
#include <NativeEnumerated.h>
/*
* Decode the chunk of JSON text encoding ENUMERATED.
*/
asn_dec_rval_t
NativeEnumerated_decode_jer
(
const
asn_codec_ctx_t
*
opt_codec_ctx
,
const
asn_TYPE_descriptor_t
*
td
,
void
**
sptr
,
const
char
*
opt_mname
,
const
void
*
buf_ptr
,
size_t
size
)
{
const
asn_INTEGER_specifics_t
*
specs
=
(
const
asn_INTEGER_specifics_t
*
)
td
->
specifics
;
asn_dec_rval_t
rval
;
INTEGER_t
st
;
void
*
st_ptr
=
(
void
*
)
&
st
;
long
*
native
=
(
long
*
)
*
sptr
;
if
(
!
native
)
{
native
=
(
long
*
)(
*
sptr
=
CALLOC
(
1
,
sizeof
(
*
native
)));
if
(
!
native
)
ASN__DECODE_FAILED
;
}
memset
(
&
st
,
0
,
sizeof
(
st
));
rval
=
ENUMERATED_decode_jer
(
opt_codec_ctx
,
td
,
&
st_ptr
,
opt_mname
,
buf_ptr
,
size
);
if
(
rval
.
code
==
RC_OK
)
{
long
l
;
if
((
specs
&&
specs
->
field_unsigned
)
?
asn_INTEGER2ulong
(
&
st
,
(
unsigned
long
*
)
&
l
)
/* sic */
:
asn_INTEGER2long
(
&
st
,
&
l
))
{
rval
.
code
=
RC_FAIL
;
rval
.
consumed
=
0
;
}
else
{
*
native
=
l
;
}
}
else
{
/*
* Cannot restart from the middle;
* there is no place to save state in the native type.
* Request a continuation from the very beginning.
*/
rval
.
consumed
=
0
;
}
ASN_STRUCT_FREE_CONTENTS_ONLY
(
asn_DEF_INTEGER
,
&
st
);
return
rval
;
}
asn_enc_rval_t
asn_enc_rval_t
NativeEnumerated_encode_jer
(
const
asn_TYPE_descriptor_t
*
td
,
const
void
*
sptr
,
NativeEnumerated_encode_jer
(
const
asn_TYPE_descriptor_t
*
td
,
const
void
*
sptr
,
int
ilevel
,
enum
jer_encoder_flags_e
flags
,
int
ilevel
,
enum
jer_encoder_flags_e
flags
,
...
...
skeletons/file-dependencies
View file @
7649fdbc
...
@@ -17,7 +17,7 @@ IA5String.h IA5String.c OCTET_STRING.h
...
@@ -17,7 +17,7 @@ IA5String.h IA5String.c OCTET_STRING.h
INTEGER.h INTEGER.c
INTEGER.h INTEGER.c
ISO646String.h ISO646String.c OCTET_STRING.h
ISO646String.h ISO646String.c OCTET_STRING.h
NULL.h NULL.c
NULL.h NULL.c
NativeEnumerated.h NativeEnumerated.c NativeInteger.h
NativeEnumerated.h NativeEnumerated.c NativeInteger.h
ENUMERATED.h
NativeInteger.h NativeInteger.c INTEGER.h
NativeInteger.h NativeInteger.c INTEGER.h
NativeReal.h NativeReal.c REAL.h
NativeReal.h NativeReal.c REAL.h
NumericString.h NumericString.c OCTET_STRING.h
NumericString.h NumericString.c OCTET_STRING.h
...
@@ -253,6 +253,7 @@ ANY.h ANY_jer.c
...
@@ -253,6 +253,7 @@ ANY.h ANY_jer.c
BIT_STRING.h BIT_STRING_jer.c
BIT_STRING.h BIT_STRING_jer.c
BMPString.h BMPString_jer.c
BMPString.h BMPString_jer.c
BOOLEAN.h BOOLEAN_jer.c
BOOLEAN.h BOOLEAN_jer.c
ENUMERATED.h ENUMERATED_jer.c
GeneralizedTime.h GeneralizedTime_jer.c
GeneralizedTime.h GeneralizedTime_jer.c
INTEGER.h INTEGER_jer.c
INTEGER.h INTEGER_jer.c
NULL.h NULL_jer.c
NULL.h NULL_jer.c
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment