scapitest.c
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:12k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * scapitest.c
  3.  *
  4.  * Expected SUCCESSes:  2 + 10 + 1 for all tests.
  5.  *
  6.  * Returns:
  7.  *      Number of FAILUREs.
  8.  *
  9.  *
  10.  * ASSUMES  No key management functions return non-zero success codes.
  11.  *
  12.  * XXX  Split into individual modules?
  13.  * XXX  Error/fringe conditions should be tested.
  14.  *
  15.  *
  16.  * Test of sc_random.                                           SUCCESSes: 2.
  17.  *      REQUIRES a human to spot check for obvious non-randomness...
  18.  *
  19.  * Test of sc_generate_keyed_hash and sc_check_keyed_hash.      SUCCESSes: 10.
  20.  *
  21.  * Test of sc_encrypt and sc_decrypt.                           SUCCESSes: 1.
  22.  */
  23. static char    *rcsid = "$Id: scapitest.c,v 5.0 2002/04/20 07:30:22 hardaker Exp $";    /* */
  24. #include <net-snmp/net-snmp-config.h>
  25. #include <stdio.h>
  26. #ifdef HAVE_NETINET_IN_H
  27. #include <netinet/in.h>
  28. #endif
  29. #include "asn1.h"
  30. #include "snmp_api.h"
  31. #include "keytools.h"
  32. #include "tools.h"
  33. #include "scapi.h"
  34. #include "transform_oids.h"
  35. #include "callback.h"
  36. #include <stdlib.h>
  37. extern char    *optarg;
  38. extern int      optind, optopt, opterr;
  39. #define DEBUG                   /* */
  40. /*
  41.  * Globals, &c...
  42.  */
  43. char           *local_progname;
  44. #define USAGE "Usage: %s [-h][-acHr]"
  45. #define OPTIONLIST "achHr"
  46. int             doalltests = 0, docrypt = 0, dokeyedhash = 0, dorandom = 0;
  47. #define ALLOPTIONS (doalltests + docrypt + dokeyedhash + dorandom)
  48. #define LOCAL_MAXBUF (1024 * 8)
  49. #define NL "n"
  50. #define OUTPUT(o) fprintf(stdout, "nn%snn", o);
  51. #define SUCCESS(s)
  52. {
  53. if (!failcount)
  54. fprintf(stdout, "nSUCCESS: %sn", s);
  55. }
  56. #define FAILED(e, f)
  57. {
  58. if (e != SNMPERR_SUCCESS) {
  59. fprintf(stdout, "nFAILED: %sn", f);
  60. failcount += 1;
  61. }
  62. }
  63. #define BIGSTRING
  64.     "   A port may be a pleasant retreat for any mind grown weary of"
  65.     "the struggle for existence.  The vast expanse of sky, the"
  66.     "mobile architecture of the clouds, the chameleon coloration"
  67.     "of the sea, the beacons flashing on the shore, together make"
  68.     "a prism which is marvellously calculated to entertain but not"
  69.     "fatigue the eye.  The lofty ships with their complex webs of"
  70.     "rigging, swayed to and fro by the swell in harmonious dance,"
  71.     "all help to maintain a taste for rhythm and beauty in the"
  72.     "mind.  And above all there is a mysterious, aristrocratic kind"
  73.     "of pleasure to be had, for those who have lost all curiosity"
  74.     "or ambition, as they strech on the belvedere or lean over the"
  75.     "mole to watch the arrivals and departures of other men, those"
  76.     "who still have sufficient strength of purpose in them, the"
  77.     "urge to travel or enrich themselves."
  78.     " -- Baudelaire"
  79.     "    From _The_Poems_in_Prose_, "The Port" (XLI)."
  80. #define BIGSECRET "Shhhh... Don't tell *anyone* about this.  Not a soul."
  81. #define BKWDSECRET ".luos a toN  .siht tuoba *enoyna* llet t'noD ...hhhhS"
  82. #define MLCOUNT_MAX 6       /* MAC Length Count Maximum. */
  83. /*
  84.  * Prototypes.
  85.  */
  86. void            usage(FILE * ofp);
  87. int             test_docrypt(void);
  88. int             test_dokeyedhash(void);
  89. int             test_dorandom(void);
  90. int
  91. main(int argc, char **argv)
  92. {
  93.     int             rval = SNMPERR_SUCCESS, failcount = 0;
  94.     char            ch;
  95.     local_progname = argv[0];
  96.     /*
  97.      * Parse.
  98.      */
  99.     while ((ch = getopt(argc, argv, OPTIONLIST)) != EOF) {
  100.         switch (ch) {
  101.         case 'a':
  102.             doalltests = 1;
  103.             break;
  104.         case 'c':
  105.             docrypt = 1;
  106.             break;
  107.         case 'H':
  108.             dokeyedhash = 1;
  109.             break;
  110.         case 'r':
  111.             dorandom = 1;
  112.             break;
  113.         case 'h':
  114.             rval = 0;
  115.         default:
  116.             usage(stdout);
  117.             exit(rval);
  118.         }
  119.         argc -= 1;
  120.         argv += 1;
  121.         optind = 1;
  122.     }                           /* endwhile getopt */
  123.     if ((argc > 1)) {
  124.         usage(stdout);
  125.         exit(1000);
  126.     } else if (ALLOPTIONS != 1) {
  127.         usage(stdout);
  128.         exit(1000);
  129.     }
  130.     /*
  131.      * Test stuff.
  132.      */
  133.     rval = sc_init();
  134.     FAILED(rval, "sc_init().");
  135.     if (docrypt || doalltests) {
  136.         failcount += test_docrypt();
  137.     }
  138.     if (dokeyedhash || doalltests) {
  139.         failcount += test_dokeyedhash();
  140.     }
  141.     if (dorandom || doalltests) {
  142.         failcount += test_dorandom();
  143.     }
  144.     /*
  145.      * Cleanup.
  146.      */
  147.     rval = sc_shutdown(SNMP_CALLBACK_LIBRARY, SNMP_CALLBACK_SHUTDOWN,
  148.                        NULL, NULL);
  149.     FAILED(rval, "sc_shutdown().");
  150.     return failcount;
  151. }                               /* end main() */
  152. void
  153. usage(FILE * ofp)
  154. {
  155.     fprintf(ofp,
  156.             USAGE
  157.             "" NL
  158.             " -a All tests." NL
  159.             " -c Test of sc_encrypt()/sc_decrypt()."
  160.             NL
  161.             " -h Help."
  162.             NL
  163.             " -H              Test sc_{generate,check}_keyed_hash()."
  164.             NL
  165.             " -r              Test sc_random()."
  166.             NL "" NL, local_progname);
  167. }                               /* end usage() */
  168. #ifdef EXAMPLE
  169. /*******************************************************************-o-******
  170.  * test_dosomething
  171.  *
  172.  * Test template.
  173.  *
  174.  * Returns:
  175.  * Number of failures.
  176.  */
  177. int
  178. test_dosomething(void)
  179. {
  180.     int             rval = SNMPERR_SUCCESS, failcount = 0;
  181.     EM0(1, "UNIMPLEMENTED");    /* EM(1); /* */
  182.   test_dosomething_quit:
  183.     return failcount;
  184. }                               /* end test_dosomething() */
  185. #endif                          /* EXAMPLE */
  186. /*******************************************************************-o-******
  187.  * test_dorandom
  188.  *
  189.  * One large request, one set of short requests.
  190.  *
  191.  * Returns:
  192.  * Number of failures.
  193.  *
  194.  * XXX probably should split up into individual options.
  195.  */
  196. int
  197. test_dorandom(void)
  198. {
  199.     int             rval = SNMPERR_SUCCESS,
  200.         failcount = 0,
  201.         origrequest = (1024 * 2),
  202.         origrequest_short = 19, nbytes = origrequest, shortcount = 7, i;
  203.     char            buf[LOCAL_MAXBUF];
  204.     OUTPUT("Random test -- large request:");
  205.     rval = sc_random(buf, &nbytes);
  206.     FAILED(rval, "sc_random().");
  207.     if (nbytes != origrequest) {
  208.         FAILED(SNMPERR_GENERR,
  209.                "sc_random() returned different than requested.");
  210.     }
  211.     dump_chunk("scapitest", NULL, buf, nbytes);
  212.     SUCCESS("Random test -- large request.");
  213.     OUTPUT("Random test -- short requests:");
  214.     origrequest_short = 16;
  215.     for (i = 0; i < shortcount; i++) {
  216.         nbytes = origrequest_short;
  217.         rval = sc_random(buf, &nbytes);
  218.         FAILED(rval, "sc_random().");
  219.         if (nbytes != origrequest_short) {
  220.             FAILED(SNMPERR_GENERR,
  221.                    "sc_random() returned different " "than requested.");
  222.         }
  223.         dump_chunk("scapitest", NULL, buf, nbytes);
  224.     }                           /* endfor */
  225.     SUCCESS("Random test -- short requests.");
  226.     return failcount;
  227. }                               /* end test_dorandom() */
  228. /*******************************************************************-o-******
  229.  * test_dokeyedhash
  230.  *
  231.  * Returns:
  232.  * Number of failures.
  233.  *
  234.  *
  235.  * Test keyed hashes with a variety of MAC length requests.
  236.  *
  237.  *
  238.  * NOTE Both tests intentionally use the same secret
  239.  *
  240.  * FIX Get input or output from some other package which hashes...
  241.  * XXX Could cut this in half with a little indirection...
  242.  */
  243. int
  244. test_dokeyedhash(void)
  245. {
  246.     int             rval = SNMPERR_SUCCESS, failcount = 0, bigstring_len = strlen(BIGSTRING), secret_len = strlen(BIGSECRET), properlength, mlcount = 0,        /* MAC Length count.   */
  247.                     hblen;      /* Hash Buffer length. */
  248.     u_int           hashbuf_len[MLCOUNT_MAX] = {
  249.         LOCAL_MAXBUF,
  250.         BYTESIZE(SNMP_TRANS_AUTHLEN_HMACSHA1),
  251.         BYTESIZE(SNMP_TRANS_AUTHLEN_HMACMD5),
  252.         BYTESIZE(SNMP_TRANS_AUTHLEN_HMAC96),
  253.         7,
  254.         0,
  255.     };
  256.     u_char          hashbuf[LOCAL_MAXBUF];
  257.     char           *s;
  258.   test_dokeyedhash_again:
  259.     OUTPUT("Keyed hash test using MD5 --");
  260.     memset(hashbuf, 0, LOCAL_MAXBUF);
  261.     hblen = hashbuf_len[mlcount];
  262.     properlength = BYTESIZE(SNMP_TRANS_AUTHLEN_HMACMD5);
  263.     rval =
  264.         sc_generate_keyed_hash(usmHMACMD5AuthProtocol,
  265.                                USM_LENGTH_OID_TRANSFORM, BIGSECRET,
  266.                                secret_len, BIGSTRING, bigstring_len,
  267.                                hashbuf, &hblen);
  268.     FAILED(rval, "sc_generate_keyed_hash().");
  269.     if (hashbuf_len[mlcount] > properlength) {
  270.         if (hblen != properlength) {
  271.             FAILED(SNMPERR_GENERR, "Wrong MD5 hash length returned.  (1)");
  272.         }
  273.     } else if (hblen != hashbuf_len[mlcount]) {
  274.         FAILED(SNMPERR_GENERR, "Wrong MD5 hash length returned.  (2)");
  275.     }
  276.     rval =
  277.         sc_check_keyed_hash(usmHMACMD5AuthProtocol,
  278.                             USM_LENGTH_OID_TRANSFORM, BIGSECRET,
  279.                             secret_len, BIGSTRING, bigstring_len, hashbuf,
  280.                             hblen);
  281.     FAILED(rval, "sc_check_keyed_hash().");
  282.     binary_to_hex(hashbuf, hblen, &s);
  283.     fprintf(stdout, "hash buffer (len=%d, request=%d):   %sn",
  284.             hblen, hashbuf_len[mlcount], s);
  285.     SNMP_FREE(s);
  286.     SUCCESS("Keyed hash test using MD5.");
  287.     OUTPUT("Keyed hash test using SHA1 --");
  288.     memset(hashbuf, 0, LOCAL_MAXBUF);
  289.     hblen = hashbuf_len[mlcount];
  290.     properlength = BYTESIZE(SNMP_TRANS_AUTHLEN_HMACSHA1);
  291.     rval =
  292.         sc_generate_keyed_hash(usmHMACSHA1AuthProtocol,
  293.                                USM_LENGTH_OID_TRANSFORM, BIGSECRET,
  294.                                secret_len, BIGSTRING, bigstring_len,
  295.                                hashbuf, &hblen);
  296.     FAILED(rval, "sc_generate_keyed_hash().");
  297.     if (hashbuf_len[mlcount] > properlength) {
  298.         if (hblen != properlength) {
  299.             FAILED(SNMPERR_GENERR,
  300.                    "Wrong SHA1 hash length returned.  (1)");
  301.         }
  302.     } else if (hblen != hashbuf_len[mlcount]) {
  303.         FAILED(SNMPERR_GENERR, "Wrong SHA1 hash length returned.  (2)");
  304.     }
  305.     rval =
  306.         sc_check_keyed_hash(usmHMACSHA1AuthProtocol,
  307.                             USM_LENGTH_OID_TRANSFORM, BIGSECRET,
  308.                             secret_len, BIGSTRING, bigstring_len, hashbuf,
  309.                             hblen);
  310.     FAILED(rval, "sc_check_keyed_hash().");
  311.     binary_to_hex(hashbuf, hblen, &s);
  312.     fprintf(stdout, "hash buffer (len=%d, request=%d):   %sn",
  313.             hblen, hashbuf_len[mlcount], s);
  314.     SNMP_FREE(s);
  315.     SUCCESS("Keyed hash test using SHA1.");
  316.     /*
  317.      * Run the basic hash tests but vary the size MAC requests.
  318.      */
  319.     if (hashbuf_len[++mlcount] != 0) {
  320.         goto test_dokeyedhash_again;
  321.     }
  322.     return failcount;
  323. }                               /* end test_dokeyedhash() */
  324. /*******************************************************************-o-******
  325.  * test_docrypt
  326.  *
  327.  * Returns:
  328.  * Number of failures.
  329.  */
  330. int
  331. test_docrypt(void)
  332. {
  333.     int             rval = SNMPERR_SUCCESS,
  334.         failcount = 0,
  335.         bigstring_len = strlen(BIGSTRING),
  336.         secret_len = BYTESIZE(SNMP_TRANS_PRIVLEN_1DES),
  337.         iv_len = BYTESIZE(SNMP_TRANS_PRIVLEN_1DES_IV);
  338.     u_int           buf_len = LOCAL_MAXBUF, cryptbuf_len = LOCAL_MAXBUF;
  339.     char            buf[LOCAL_MAXBUF],
  340.         cryptbuf[LOCAL_MAXBUF], secret[LOCAL_MAXBUF], iv[LOCAL_MAXBUF];
  341.     OUTPUT("Test 1DES-CBC --");
  342.     memset(buf, 0, LOCAL_MAXBUF);
  343.     memcpy(secret, BIGSECRET, secret_len);
  344.     memcpy(iv, BKWDSECRET, iv_len);
  345.     rval = sc_encrypt(usmDESPrivProtocol, USM_LENGTH_OID_TRANSFORM,
  346.                       secret, secret_len,
  347.                       iv, iv_len,
  348.                       BIGSTRING, bigstring_len, cryptbuf, &cryptbuf_len);
  349.     FAILED(rval, "sc_encrypt().");
  350.     rval = sc_decrypt(usmDESPrivProtocol, USM_LENGTH_OID_TRANSFORM,
  351.                       secret, secret_len,
  352.                       iv, iv_len, cryptbuf, cryptbuf_len, buf, &buf_len);
  353.     FAILED(rval, "sc_decrypt().");
  354.     if (buf_len != bigstring_len) {
  355.         FAILED(SNMPERR_GENERR, "Decrypted buffer is the wrong length.");
  356.     }
  357.     if (memcmp(buf, BIGSTRING, bigstring_len)) {
  358.         FAILED(SNMPERR_GENERR,
  359.                "Decrypted buffer is not equal to original plaintext.");
  360.     }
  361.     SUCCESS("Test 1DES-CBC --");
  362.     return failcount;
  363. }                               /* end test_docrypt() */