aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_bin_v2_SUITE_data/PDUs.py
blob: 907348193f8b9ef0254334424de8a1feb89fb6ed (plain) (blame)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
PDUs DEFINITIONS ::=

-- Search for 'org' to find changes for erlang.

-- SnmpMgmtCom and PDUs only for dbg.


BEGIN
EXPORTS SnmpPrivMsg, SnmpAuthMsg, SnmpMgmtCom, PDUs;

-- From RFC 1442

          -- names of objects

          ObjectName ::=
              OBJECT IDENTIFIER


          -- syntax of objects

          ObjectSyntax ::=
              CHOICE {
                  simple
                      SimpleSyntax,

                    -- note that SEQUENCEs for conceptual tables and
                    -- rows are not mentioned here...

                  applicationWide
                      ApplicationSyntax
              }


          -- built-in ASN.1 types

          SimpleSyntax ::=
              CHOICE {
                  -- INTEGERs with a more restrictive range
                  -- may also be used
                  integerValue
                      INTEGER, 

                  stringValue
                      OCTET STRING,

                  objectIDValue
                      OBJECT IDENTIFIER,

                  -- only the enumerated form is allowed
                  bitValue
                      BIT STRING
              }


          -- indistinguishable from INTEGER, but never needs more than
          -- 32Bits for a two's complement representation
          Integer32 ::=
              [UNIVERSAL 2]
                  IMPLICIT INTEGER (-2147483648..2147483647)


          -- applicationWide types

          ApplicationSyntax ::=
              CHOICE {
                  ipAddressValue
                      IpAddress,

                  counterValue
                      Counter32,

                  gaugeValue
                      Gauge32,

                  timeticksValue
                      TimeTicks,

                  arbitraryValue
                      Opaque,

                  nsapAddressValue
                      NsapAddress,

                  bigCounterValue
                      Counter64,

                  unsignedIntegerValue
                      UInteger32
              }

          -- in networkByte order
          -- (this is a tagged type for historical reasons)
          IpAddress ::=
              [APPLICATION 0]
                  IMPLICIT OCTET STRING (SIZE (4))




          -- this wraps
          Counter32 ::=
              [APPLICATION 1]
                  IMPLICIT INTEGER (0..4294967295)

          -- this doesn't wrap
          Gauge32 ::=
              [APPLICATION 2]
                  IMPLICIT INTEGER (0..4294967295) 

          -- hundredths of seconds since an epoch
          TimeTicks ::=
              [APPLICATION 3]
                  IMPLICIT INTEGER (0..4294967295)

          -- for backwardCompatibility only
          Opaque ::=
              [APPLICATION 4]
                  IMPLICIT OCTET STRING

          -- for OSI NSAP addresses
          -- (this is a tagged type for historical reasons)
          NsapAddress ::=
              [APPLICATION 5]
-- org:                  IMPLICIT OCTET STRING (SIZE (1 | 4..21))
                  IMPLICIT OCTET STRING

          -- for counters that wrap in less than one hour with only 32 bits
          Counter64 ::=
              [APPLICATION 6]
                  IMPLICIT INTEGER (0..18446744073709551615)

          -- an unsigned 32Bit quantity
          UInteger32 ::=
              [APPLICATION 7]
                  IMPLICIT INTEGER (0..4294967295)


-- From RFC 1445

          SnmpPrivMsg ::= [1] IMPLICIT SEQUENCE {
             privDst
                OBJECT IDENTIFIER,
             privData
                [1] IMPLICIT OCTET STRING
           }

           SnmpAuthMsg ::= [1] IMPLICIT SEQUENCE {
             authInfo
                ANY, -- defined by authentication protocol
             authData
                SnmpMgmtCom
           }

           SnmpMgmtCom ::= [2] IMPLICIT SEQUENCE {
             dstParty
                OBJECT IDENTIFIER,
             srcParty
                OBJECT IDENTIFIER,
             context
                OBJECT IDENTIFIER,
             pdu
                PDUs
           }


-- From RFC 1448

                -- org: no tag at all. we need a tag to test 'PDUs'. 
               PDUs ::= [PRIVATE 1]
                   -- remove tag when 'PDUs' only is used in another type.
                   CHOICE {
                       getRequest
                           GetRequestPdu,

                       getNextRequest
                           GetNextRequestPdu,

                       getBulkRequest
                           GetBulkRequestPdu,

                       response
                           ResponsePdu,

                       setRequest
                           SetRequestPdu,

                       informRequest
                           InformRequestPdu,

                       snmpV2Trap
                           SNMPv2TrapPdu
                   }

               -- PDUs

               GetRequestPdu ::=
                   [0]
                       IMPLICIT PDU

               GetNextRequestPdu ::=
                   [1]
                       IMPLICIT PDU

               ResponsePdu ::=
                   [2]
                       IMPLICIT PDU

               SetRequestPdu ::=
                   [3]
                       IMPLICIT PDU

               -- [4] is obsolete

               GetBulkRequestPdu ::=
                   [5]
                       IMPLICIT BulkPDU

               InformRequestPdu ::=
                   [6]
                       IMPLICIT PDU

               SNMPv2TrapPdu ::=
                   [7]
                       IMPLICIT PDU


               maxBindings
                   INTEGER ::= 2147483647

               PDU ::=
                   SEQUENCE {
                       requestId
                           Integer32,

                       errorStatus            -- sometimes ignored
                           INTEGER {
                               noError(0),
                               tooBig(1),
                               noSuchName(2),   -- for proxy compatibility
                               badValue(3),     -- for proxy compatibility
                               readOnly(4),     -- for proxy compatibility
                               genErr(5),
                               noAccess(6),
                               wrongType(7),
                               wrongLength(8),
                               wrongEncoding(9),
                               wrongValue(10),
                               noCreation(11),
                               inconsistentValue(12),
                               resourceUnavailable(13),
                               commitFailed(14),
                               undoFailed(15),
                               authorizationError(16),
                               notWritable(17),
                               inconsistentName(18)
                           },

                       errorIndex            -- sometimes ignored
                           INTEGER (0..maxBindings),

                       variableBindings   -- values are sometimes ignored
                           VarBindList
                   }


               BulkPDU ::=                     -- MUST be identical in
                   SEQUENCE {                  -- structure to PDU
                       requestId
                           Integer32,

                       nonRepeaters
                           INTEGER (0..maxBindings),

                       maxRepetitions
                           INTEGER (0..maxBindings),

                       variableBindings       -- values are ignored
                           VarBindList
                   }


               VarBind ::=
                   SEQUENCE {
                       name
                           ObjectName,

                       data CHOICE {
                           value
                               ObjectSyntax,

                           unSpecified         -- in retrieval requests
                                   NULL,

                                               -- exceptions in responses
                           noSuchObject[0]
                                   IMPLICIT NULL,

                           noSuchInstance[1]
                                   IMPLICIT NULL,

                           endOfMibView[2]
                                   IMPLICIT NULL
                       }
                   }


               -- variableBinding list

               VarBindList ::=
                   SEQUENCE OF VarBind

-- org:
--               VarBindList ::=
--                   SEQUENCE (SIZE (0..maxBindings)) OF
--                       VarBind

END