PDuplicate.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:5k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* 
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifdef DEBUG
  34. static const char CVS_ID[] = "@(#) $Source: /cvsroot/mozilla/security/nss/lib/pkix/src/RelativeDistinguishedName/PDuplicate.c,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:14:25 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #ifndef PKIX_H
  37. #include "pkix.h"
  38. #endif /* PKIX_H */
  39. /*
  40.  * nssPKIXRelativeDistinguishedName_Duplicate
  41.  *
  42.  * -- fgmr comments --
  43.  *
  44.  * The error may be one of the following values:
  45.  *  NSS_ERROR_INVALID_PKIX_RDN
  46.  *  NSS_ERROR_INVALID_ARENA
  47.  *  NSS_ERROR_NO_MEMORY
  48.  *
  49.  * Return value:
  50.  *  A valid pointer to an NSSPKIXRelativeDistinguishedName upon success
  51.  *  NULL upon failure
  52.  */
  53. NSS_IMPLEMENT NSSPKIXRelativeDistinguishedName *
  54. nssPKIXRelativeDistinguishedName_Duplicate
  55. (
  56.   NSSPKIXRelativeDistinguishedName *rdn,
  57.   NSSArena *arenaOpt
  58. )
  59. {
  60.   NSSArena *arena;
  61.   PRBool arena_allocated = PR_FALSE;
  62.   nssArenaMark *mark = (nssArenaMark *)NULL;
  63.   NSSPKIXRelativeDistinguishedName *rv = (NSSPKIXRelativeDistinguishedName *)NULL;
  64.   PRStatus status;
  65.   PRUint32 i;
  66.   NSSPKIXAttributeTypeAndValue **from, **to;
  67. #ifdef NSSDEBUG
  68.   if( PR_SUCCESS != nssPKIXRelativeDistinguishedName_verifyPointer(rdn) ) {
  69.     return (NSSPKIXRelativeDistinguishedName *)NULL;
  70.   }
  71.   if( (NSSArena *)NULL != arenaOpt ) {
  72.     if( PR_SUCCESS != nssArena_verifyPointer(arenaOpt) ) {
  73.       return (NSSPKIXRelativeDistinguishedName *)NULL;
  74.     }
  75.   }
  76. #endif /* NSSDEBUG */
  77.   if( (NSSArena *)NULL == arenaOpt ) {
  78.     arena = nssArena_Create();
  79.     if( (NSSArena *)NULL == arena ) {
  80.       goto loser;
  81.     }
  82.     arena_allocated = PR_TRUE;
  83.   } else {
  84.     arena = arenaOpt;
  85.     mark = nssArena_Mark(arena);
  86.     if( (nssArenaMark *)NULL == mark ) {
  87.       goto loser;
  88.     }
  89.   }
  90.   rv = nss_ZNEW(arena, NSSPKIXRelativeDistinguishedName);
  91.   if( (NSSPKIXRelativeDistinguishedName *)NULL == rv ) {
  92.     goto loser;
  93.   }
  94.   rv->arena = arena;
  95.   rv->i_allocated_arena = arena_allocated;
  96.   if( (NSSDER *)NULL != rdn->der ) {
  97.     rv->der = nssItem_Duplicate(rdn->der, arena, (NSSItem *)NULL);
  98.     if( (NSSDER *)NULL == rv->der ) {
  99.       goto loser;
  100.     }
  101.   }
  102.   if( (NSSBER *)NULL != rdn->ber ) {
  103.     rv->ber = nssItem_Duplicate(rdn->ber, arena, (NSSItem *)NULL);
  104.     if( (NSSBER *)NULL == rv->ber ) {
  105.       goto loser;
  106.     }
  107.   }
  108.   if( (NSSUTF8 *)NULL != rdn->utf8 ) {
  109.     rv->utf8 = nssUTF8_Duplicate(rdn->utf8, arena);
  110.     if( (NSSUTF8 *)NULL == rv->utf8 ) {
  111.       goto loser;
  112.     }
  113.   }
  114.   rv->count = rdn->count;
  115.   {
  116.     if( 0 == rdn->count ) {
  117.       nss_pkix_RelativeDistinguishedName_Count(rdn);
  118.       if( 0 == rdn->count ) {
  119.         nss_SetError(NSS_ERROR_INTERNAL_ERROR);
  120.         goto loser;
  121.       }
  122.       rv->count = rdn->count; /* might as well save it */
  123.     }
  124.     rv->atavs = nss_ZNEWARRAY(arena, NSSPKIXAttributeTypeAndValue *, rdn->count + 1);
  125.     if( (NSSPKIXAttributeTypeAndValue *)NULL == rv->atavs ) {
  126.       goto loser;
  127.     }
  128.   }
  129.   for( from = &rdn->atavs[0], to = &rv->atavs[0]; *from; from++, to++ ) {
  130.     *to = nssPKIXAttributeTypeAndValue_Duplicate(*from, arena);
  131.     if( (NSSPKIXAttributeTypeAndValue *)NULL == *to ) {
  132.       goto loser;
  133.     }
  134.   }
  135.   if( (nssArenaMark *)NULL != mark ) {
  136.     if( PR_SUCCESS != nssArena_Unmark(arena, mark) ) {
  137.       goto loser;
  138.     }
  139.   }
  140. #ifdef DEBUG
  141.   if( PR_SUCCESS != nss_pkix_RelativeDistinguishedName_add_pointer(rv) ) {
  142.     goto loser;
  143.   }
  144. #endif /* DEBUG */
  145.   return rv;
  146.  loser:
  147.   if( (nssArenaMark *)NULL != mark ) {
  148.     (void)nssArena_Release(arena, mark);
  149.   }
  150.   if( PR_TRUE == arena_allocated ) {
  151.     (void)nssArena_Destroy(arena);
  152.   }
  153.   return (NSSPKIXRelativeDistinguishedName *)NULL;
  154. }