summaryrefslogtreecommitdiff
path: root/lib/snmp/doc/src/snmp_def_instr_functions.xml
blob: 5a59f1bae5da3e0f1a80c7e5b761f7e5e30a0328 (plain)
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">

<chapter>
  <header>
    <copyright>
      <year>1997</year><year>2021</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    
    </legalnotice>

    <title>Definition of Instrumentation Functions</title>
    <prepared></prepared>
    <responsible></responsible>
    <docno></docno>
    <approved></approved>
    <checked></checked>
    <date></date>
    <rev></rev>
    <file>snmp_def_instr_functions.xml</file>
  </header>
  <p>The section <em>Definition of Instrumentation Functions</em> describes
    the user defined functions, which the agent calls at different times.
    </p>

  <section>
    <title>Variable Instrumentation</title>
    <p>For scalar variables, a function <c>f(Operation, ...)</c> must
      be defined.
      </p>
    <p>The <c>Operation</c> can be <c>new</c>, <c>delete</c>,
      <c>get</c>, <c>is_set_ok</c>, <c>set</c>, or <c>undo</c>.
      </p>
    <p>In case of an error, all instrumentation functions may return
      either an SNMPv1 or an SNMPv2 error code. If it returns an SNMPv2
      code, it is converted into an SNMPv1 code before it is sent to a
      SNMPv1 manager.  It is  recommended to use the SNMPv2 error codes
      for all instrumentation functions, as these provide more
      details. See <seeguide marker="snmp_app_a">Appendix A</seeguide> for a
      description of error code conversions.
      </p>

    <section>
      <title>f(new [, ExtraArgs])</title>
      <p>The function <c>f(new [, ExtraArgs])</c> is called for each
        variable in the MIB when the
        MIB is loaded into the agent. This makes it possible to perform
        necessary initialization.
        </p>
      <p>This function is optional. The return value is discarded.</p>
    </section>

    <section>
      <title>f(delete [, ExtraArgs])</title>
      <p>The function <c>f(delete [, ExtraArgs])</c> is called
        for each object in an MIB when the
        MIB is unloaded from the agent. This makes it possible to
        perform necessary clean-up.
        </p>
      <p>This function is optional. The return value is discarded.</p>
    </section>

    <section>
      <title>f(get [, ExtraArgs])</title>
      <p>The function <c>f(get [, ExtraArgs])</c> is called when a
        get-request or a get-next
        request refers to the variable.
        </p>
      <p>This function is mandatory.
        </p>

      <section>
        <title>Valid Return Values</title>
        <list type="bulleted">
          <item><c>{value, Value}</c>. The <c>Value</c> must be of
           correct type, length and within ranges, otherwise
          <c>genErr</c> is returned in the response PDU.  If the
           object is an enumerated integer, the symbolic enum value
           may be used as an atom. If the object is of type BITS, the
           return value shall be an integer or a list of bits that
           are set.
          </item>
          <item><c>{noValue, noSuchName}</c>(SNMPv1)
          </item>
          <item><c>{noValue, noSuchObject | noSuchInstance} </c>(SNMPv2)
          </item>
          <item><c>genErr</c>.  Used if an error occurred.  Note,
           this should be an internal processing error, e.g. a caused
           by a programming fault somewhere.  If the variable does not
           exist, use <c>{noValue, noSuchName}</c> or
          <c>{noValue, noSuchInstance}</c>.
          </item>
        </list>
      </section>
    </section>

    <section>
      <title>f(is_set_ok, NewValue [, ExtraArgs])</title>
      <p>The function <c>f(is_set_ok, NewValue [, ExtraArgs])</c> is
        called in phase one of the set-request
        processing so that the new value can be checked for
        inconsistencies.
        </p>
      <p><c>NewValue</c> is guaranteed to be of the correct type,
        length and within ranges, as specified in the MIB.  If the
        object is an enumerated integer or of type BITS, the integer
        value is used.
        </p>
      <p>This function is optional.
        </p>
      <p>If this function is called, it will be called again, either
        with <c>undo</c> or with <c>set</c> as first argument.
        </p>

      <section>
        <title>Valid return values</title>
        <list type="bulleted">
          <item><c>noError</c></item>
          <item><c>badValue | noSuchName | genErr</c>(SNMPv1)
          </item>
          <item><c>noAccess | noCreation | inconsistentValue | resourceUnavailable | inconsistentName | genErr</c>(SNMPv2)</item>
        </list>
      </section>
    </section>

    <section>
      <title>f(undo, NewValue [, ExtraArgs])</title>
      <p>If an error occurred, this function is called after the
        <c>is_set_ok</c> function is called. If <c>set</c> is called for
        this object, <c>undo</c> is not called.
        </p>
      <p><c>NewValue</c> is guaranteed to be of the correct type,
        length and within ranges, as specified in the MIB.  If the
        object is an enumerated integer or of type BITS, the integer
        value is used.
        </p>
      <p>This function is optional.
        </p>

      <section>
        <title>Valid return values</title>
        <list type="bulleted">
          <item><c>noError</c></item>
          <item><c>genErr</c>(SNMPv1)
          </item>
          <item><c>undoFailed | genErr</c>(SNMPv2)</item>
        </list>
      </section>
    </section>

    <section>
      <title>f(set, NewValue [, ExtraArgs])</title>
      <p>This function is called to perform the set in phase two of
        the set-request processing. It is only called if the
        corresponding <c>is_set_ok</c> function is present and returns
        <c>noError</c>.
        </p>
      <p><c>NewValue</c> is guaranteed to be of the correct type,
        length and within ranges, as specified in the MIB.  If the
        object is an enumerated integer or of type BITS, the integer
        value is used.
        </p>
      <p>This function is mandatory.
        </p>

      <section>
        <title>Valid return values</title>
        <list type="bulleted">
          <item><c>noError</c></item>
          <item><c>genErr</c>(SNMPv1)
          </item>
          <item><c>commitFailed | undoFailed | genErr</c>(SNMPv2)</item>
        </list>
      </section>
    </section>
  </section>

  <section>
    <title>Table Instrumentation</title>
    <p>For tables, a <c>f(Operation, ...)</c> function should be
      defined (the function shown is exemplified with <c>f</c>).
      </p>
    <p>The <c>Operation</c> can be <c>new</c>, <c>delete</c>,
      <c>get</c>, <c>next</c>, <c>is_set_ok</c>, <c>undo</c> or
      <c>set</c>.
      </p>
    <p>In case of an error, all instrumentation functions may return
      either an SNMPv1 or an SNMPv2 error code. If it returns an SNMPv2
      code, it is converted into an SNMPv1 code before it is sent to a
      SNMPv1 manager. It is  recommended to use the SNMPv2 error codes
      for all instrumentation functions, as these provide more
      details. See <seeguide marker="snmp_app_a">Appendix A</seeguide> for a
      description of error code conversions.</p>

    <section>
      <title>f(new [, ExtraArgs])</title>
      <p>The function <c>f(new [, ExtraArgs])</c> is called for each object in an MIB when the
        MIB is loaded into the agent. This makes it possible to perform
        the necessary initialization.
        </p>
      <p>This function is optional. The return value is discarded.</p>
    </section>

    <section>
      <title>f(delete [, ExtraArgs])</title>
      <p>The function <c>f(delete [, ExtraArgs])</c> is called for each object in an MIB when the
        MIB is unloaded from the agent. This makes it possible to
        perform any necessary clean-up.
        </p>
      <p>This function is optional. The return value is discarded.</p>
    </section>

    <section>
      <title>f(get, RowIndex, Cols [, ExtraArgs])</title>
      <p>The function <c>f(get, RowIndex, Cols [, ExtraArgs])</c> is
        called when a get-request refers to a table.
        </p>
      <p>This function is mandatory.
        </p>

      <section>
        <title>Arguments</title>
        <list type="bulleted">
          <item><c>RowIndex</c> is a list of integers which define the
           key values for the row. The <c>RowIndex</c> is the list
           representation (list of integers) which follow the
          <c>Cols</c> integer in the OBJECT IDENTIFIER.
          </item>
          <item><c>Cols</c> is a list of integers which represent the
           column numbers. The <c>Cols</c> are sorted by increasing
           value and are guaranteed to be valid column numbers.</item>
        </list>
      </section>

      <section>
        <title>Valid Return Values</title>
        <list type="bulleted">
          <item>
            <p>A list with as many elements as the <c>Cols</c> list,
              where each element is the value of the corresponding
              column.  Each element can be:</p>
            <list type="bulleted">
              <item><c>{value, Value}</c>. The <c>Value</c> must be of
               correct type, length and within ranges, otherwise
              <c>genErr</c> is returned in the response PDU.  If the
               object is an enumerated integer, the symbolic enum
               value may be used (as an atom). If the object is of
               type BITS, the return value shall be an integer or a
               list of bits that are set.
              </item>
              <item><c>{noValue, noSuchName}</c>(SNMPv1)
              </item>
              <item><c>{noValue, noSuchObject | noSuchInstance}</c>(SNMPv2)
              </item>
            </list>
          </item>
          <item><c>{noValue, Error}</c>. If the row does not exist,
           because all columns have <c>{noValue, Error}</c>), the
           single tuple <c>{noValue, Error}</c> can be returned.
           This is a shorthand for a list with all elements
          <c>{noValue, Error}</c>.
          </item>
          <item><c>genErr</c>.  Used if an error occurred.  Note that
           this should be an internal processing error, e.g. a caused
           by a programming fault somewhere.  If some column does not
           exist, use <c>{noValue, noSuchName}</c> or
          <c>{noValue, noSuchInstance}</c>.
          </item>
        </list>
      </section>
    </section>

    <section>
      <title>f(get_next, RowIndex, Cols [, ExtraArgs])</title>
      <p>The function <c>f(get_next, RowIndex, Cols [, ExtraArgs])</c> is 
        called when a get-next- or a
        get-bulk-request refers to the table.
        </p>
      <p>The <c>RowIndex</c> argument may refer to an existing row or a
        non-existing row, or it may be unspecified. The <c>Cols</c> list
        may refer to inaccessible columns or non-existing columns. For
        each column in the <c>Cols</c> list, the corresponding next
        instance is determined, and the last part of its OBJECT
        IDENTIFIER and its value is returned.
        </p>
      <p>This function is mandatory.
        </p>

      <section>
        <title>Arguments</title>
        <list type="bulleted">
          <item><c>RowIndex</c> is a list of integers (possibly empty)
           that defines the key values for a row. The <c>RowIndex</c>
           is the list representation (list of integers), which follow
           the <c>Cols</c> integer in the OBJECT IDENTIFIER.
          </item>
          <item><c>Cols</c> is a list of integers, greater than or
           equal to zero, which represents the column numbers.</item>
        </list>
      </section>

      <section>
        <title>Valid Return Values</title>
        <list type="bulleted">
          <item>
            <p>A list with as many elements as the <c>Cols</c> list
              Each element can be:</p>
            <list type="bulleted">
              <item><c>{NextOid, NextValue}</c>, where <c>NextOid</c>
               is the lexicographic next OBJECT IDENTIFIER for the
               corresponding column. This should be specified as the
               OBJECT IDENTIFIER part following the table entry. This
               means that the first integer is the column number and
               the rest is a specification of the keys.
              <c>NextValue</c> is the value of this element.
              </item>
              <item><c>endOfTable</c> if there are no accessible
               elements after this one.
              </item>
            </list>
          </item>
          <item><c>{genErr, Column}</c> where <c>Column</c> denotes
           the column that caused the error.  <c>Column</c> must be
           one of the columns in the <c>Cols</c> list.  Note that
           this should be an internal processing error, e.g. a caused
           by a programming fault somewhere.  If some column does not
           exist, you must return the next accessible element (or
          <c>endOfTable</c>). 
          </item>
        </list>
      </section>
    </section>

    <section>
      <title>f(is_set_ok, RowIndex, Cols [, ExtraArgs])</title>
      <p>The function <c>f(is_set_ok, RowIndex, Cols [, ExtraArgs])</c>
        is called in phase one of the set-request
        processing so that new values can be checked for
        inconsistencies.
        </p>
      <p>If the function is called, it will be called again with
        <c>undo</c>, or with <c>set</c> as first argument.
        </p>
      <p>This function is optional.
        </p>

      <section>
        <title>Arguments</title>
        <list type="bulleted">
          <item><c>RowIndex</c> is a list of integers which define the
           key values for the row. The <c>RowIndex</c> is the list
           representation (list of integers) which follow the
          <c>Cols</c> integer in the OBJECT IDENTIFIER.
          </item>
          <item><c>Cols</c> is a list of <c>{Column, NewValue}</c>,
           where <c>Column</c> is an integer, and <c>NewValue</c> is
           guaranteed to be of the correct type, length and within
           ranges, as specified in the MIB.  If the object is an
           enumerated integer or of type BITS, the integer value is
           used.  The list is sorted by <c>Column</c> (increasing) and
           each <c>Column</c> is guaranteed to be a valid column
           number.</item>
        </list>
      </section>

      <section>
        <title>Valid Return Values</title>
        <list type="bulleted">
          <item><c>{noError, 0}</c></item>
          <item><c>{Error, Column}</c>, where <c>Error</c> is the same
           as for <c>is_set_ok</c> for variables, and <c>Column</c>
           denotes the faulty column.  <c>Column</c> must be one of the
           columns in the <c>Cols</c> list.</item>
        </list>
      </section>
    </section>

    <section>
      <title>f(undo, RowIndex, Cols [, ExtraArgs])</title>
      <p>If an error occurs, The function
        <c>f(undo, RowIndex, Cols [, ExtraArgs])</c> is called after the
        <c>is_set_ok</c> function. If <c>set</c> is called for this
        object, <c>undo</c> is not called.
        </p>
      <p>This function is optional.
        </p>

      <section>
        <title>Arguments</title>
        <list type="bulleted">
          <item><c>RowIndex</c> is a list of integers which define the
           key values for the row. The <c>RowIndex</c> is the list
           representation (list of integers) which follow the
          <c>Cols</c> integer in the OBJECT IDENTIFIER.
          </item>
          <item><c>Cols</c> is a list of <c>{Column, NewValue}</c>,
           where <c>Column</c> is an integer, and <c>NewValue</c> is
           guaranteed to be of the correct type, length and within
           ranges, as specified in the MIB.  If the object is an
           enumerated integer or of type BITS, the integer value is
           used.  The list is sorted by <c>Column</c> (increasing) and
           each <c>Column</c> is guaranteed to be a valid column
           number.
          </item>
        </list>
      </section>

      <section>
        <title>Valid Return Values</title>
        <list type="bulleted">
          <item><c>{noError, 0}</c></item>
          <item><c>{Error, Column}</c> where <c>Error</c> is the same
           as for <c>undo</c> for variables, and <c>Column</c> denotes
           the faulty column.  <c>Column</c> must be one of the columns
           in the <c>Cols</c> list.
          </item>
        </list>
      </section>
    </section>

    <section>
      <title>f(set, RowIndex, Cols [, ExtraArgs])</title>
      <p>The function <c>f(set, RowIndex, Cols [, ExtraArgs])</c> is
        called to perform the set in phase two of
        the set-request processing. It is only called if the
        corresponding <c>is_set_ok</c> function did not exist, or
        returned <c>{noError, 0}</c>.
        </p>
      <p>This function is mandatory.
        </p>

      <section>
        <title>Arguments</title>
        <list type="bulleted">
          <item><c>RowIndex</c> is a list of integers that define the
           key values for the row. The <c>RowIndex</c> is the list
           representation (list of integers) which follow the
          <c>Cols</c> integer in the OBJECT IDENTIFIER.
          </item>
          <item><c>Cols</c> is a list of <c>{Column, NewValue}</c>,
           where <c>Column</c> is an integer, and <c>NewValue</c> is
           guaranteed to be of the correct type, length and within
           ranges, as specified in the MIB.  If the object is an
           enumerated integer or of type BITS, the integer value is
           used.  The list is sorted by <c>Column</c> (increasing) and
           each <c>Column</c> is guaranteed to be a valid column
           number.
          </item>
        </list>
      </section>

      <section>
        <title>Valid Return Values</title>
        <list type="bulleted">
          <item><c>{noError, 0}</c></item>
          <item><c>{Error, Column}</c> where <c>Error</c> is the same
           as <c>set</c> for variables, and <c>Column</c> denotes
           the faulty column.  <c>Column</c> must be one of the columns
           in the <c>Cols</c> list.</item>
        </list>
      </section>
    </section>
  </section>
</chapter>