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

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. #include <stdio.h>
  34. #include <stdlib.h>
  35. /* We really do have 'long long' on the Mac, but NSPR doesn't yet know this.
  36.    Need to define this before including NSPR to get the right defn of PRInt64. */
  37. #if 0
  38. #ifdef XP_MAC
  39. #define HAVE_LONG_LONG
  40. #endif
  41. #endif
  42. #include "prtime.h"
  43. #include "prenv.h"
  44. #include "prlong.h"
  45. char * timebombVar = "NSM_TIMEBOMB";
  46. #define SSM_SEC_PER_24HRS (60 * 60 * 24)
  47. int main()
  48.  FILE * headerFile, * timeFile;
  49.  int daysToLive;
  50.  char * tmp = PR_GetEnv(timebombVar);
  51.  PRTime timeNow, lifeTime, expire, tmpVal, days, tmpMilli;
  52.  PRInt32 timeHi, timeLow;
  53.  daysToLive = atoi(tmp);
  54.  timeNow = PR_Now();
  55.  LL_I2L(tmpVal, SSM_SEC_PER_24HRS);
  56.  LL_I2L(days, daysToLive);
  57.  LL_MUL(tmpMilli, days, tmpVal);
  58.  LL_MUL(lifeTime, tmpMilli, PR_USEC_PER_SEC);
  59.  LL_ADD(expire, timeNow, lifeTime);
  60.  LL_SHR(tmpVal, expire, 32);
  61.  LL_L2UI(timeHi, tmpVal);
  62.  LL_L2UI(timeLow, expire);
  63.  timeFile = fopen("timestamp.h", "w");
  64.  if (!timeFile) {
  65.    printf("Can't create timestamp.h.n");
  66.    goto loser;
  67.  }
  68.  fprintf(timeFile, "/*n * Created automatically, do not edit!n */nn");
  69.  fprintf(timeFile, "/* This build of Cartman will expire at this time. */ n");
  70.  fprintf(timeFile, "static PRTime expirationTime =  LL_INIT(0x%lx, 0x%lx);n", timeHi, 
  71.    timeLow);
  72.  
  73.  fclose(timeFile);
  74.  
  75.  headerFile = fopen("timebomb.h", "w");
  76.  if (!headerFile) {
  77.    printf("Can't open timebomb.h for writing!n");
  78.    goto loser;
  79.  }
  80.  fprintf(headerFile,
  81.          "/* This file is generated automatically by createBomb.c, do not edit! */nnn");
  82.  
  83.  /*
  84.   * Function declarations that are used for the timebomb.
  85.   * Definitions are in timebomb.c, included in frontend.c.
  86.   */
  87.  fprintf(headerFile,
  88.          "nn/* Functions used in Cartman for the timebomb. */n");
  89.  fprintf(headerFile,
  90.          "/*n * Set SSMTimeBombExpired to PR_TRUE if Cartman has expired. n */n");
  91.  fprintf(headerFile, "void SSM_CheckTimeBomb();nn");
  92.  fprintf(headerFile,
  93.  "/*n * Run this function from frontend thread of control connectionn * if Cartman has expired. n */n");
  94.  fprintf(headerFile, "void SSM_CartmanHasExpired(SSMControlConnection * control);nn");
  95.  
  96.  fclose(headerFile);
  97. loser:
  98.  return 0;
  99. }