postinit.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:16k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * postinit.c
  4.  *   postgres initialization utilities
  5.  *
  6.  * Copyright (c) 1994, Regents of the University of California
  7.  *
  8.  *
  9.  * IDENTIFICATION
  10.  *   $Header: /usr/local/cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.40.2.1 1999/08/02 05:25:10 scrappy Exp $
  11.  *
  12.  * NOTES
  13.  * InitPostgres() is the function called from PostgresMain
  14.  * which does all non-trival initialization, mainly by calling
  15.  * all the other initialization functions.  InitPostgres()
  16.  * is only used within the "postgres" backend and so that routine
  17.  * is in tcop/postgres.c  InitPostgres() is needed in cinterface.a
  18.  * because things like the bootstrap backend program need it. Hence
  19.  * you find that in this file...
  20.  *
  21.  * If you feel the need to add more initialization code, it should be
  22.  * done in InitPostgres() or someplace lower. Do not start
  23.  * putting stuff in PostgresMain - if you do then someone
  24.  * will have to clean it up later, and it's not going to be me!
  25.  * -cim 10/3/90
  26.  *
  27.  *-------------------------------------------------------------------------
  28.  */
  29. #include <fcntl.h>
  30. #include <sys/file.h>
  31. #include <sys/types.h>
  32. #include <math.h>
  33. #include <unistd.h>
  34. #include "postgres.h"
  35. #include "access/heapam.h"
  36. #include "catalog/catname.h"
  37. #include "libpq/libpq.h"
  38. #include "miscadmin.h"
  39. #include "storage/backendid.h"
  40. #include "storage/proc.h"
  41. #include "storage/sinval.h"
  42. #include "storage/smgr.h"
  43. #include "utils/inval.h"
  44. #include "utils/portal.h"
  45. #include "utils/relcache.h"
  46. #include "utils/syscache.h"
  47. #include "version.h"
  48. #ifdef MULTIBYTE
  49. #include "mb/pg_wchar.h"
  50. #endif
  51. static void VerifySystemDatabase(void);
  52. static void VerifyMyDatabase(void);
  53. static void InitCommunication(void);
  54. static void InitMyDatabaseInfo(char *name);
  55. static void InitStdio(void);
  56. static void InitUserid(void);
  57. extern char *ExpandDatabasePath(char *name);
  58. extern void GetRawDatabaseInfo(char *name, int4 *owner, Oid *db_id, char *path, int *encoding);
  59. static IPCKey PostgresIpcKey;
  60. /* ----------------------------------------------------------------
  61.  * InitPostgres support
  62.  * ----------------------------------------------------------------
  63.  */
  64. /* --------------------------------
  65.  * InitMyDatabaseInfo() -- Find and record the OID of the database we are
  66.  *   to open.
  67.  *
  68.  * The database's oid forms half of the unique key for the system
  69.  * caches and lock tables.  We therefore want it initialized before
  70.  * we open any relations, since opening relations puts things in the
  71.  * cache. To get around this problem, this code opens and scans the
  72.  * pg_database relation by hand.
  73.  *
  74.  * This algorithm relies on the fact that first attribute in the
  75.  * pg_database relation schema is the database name.  It also knows
  76.  * about the internal format of tuples on disk and the length of
  77.  * the datname attribute. It knows the location of the pg_database
  78.  * file.
  79.  * Actually, the code looks as though it is using the pg_database
  80.  * tuple definition to locate the database name, so the above statement
  81.  * seems to be no longer correct. - thomas 1997-11-01
  82.  *
  83.  * This code is called from InitPostgres(), before we chdir() to the
  84.  * local database directory and before we open any relations.
  85.  * Used to be called after the chdir(), but we now want to confirm
  86.  * the location of the target database using pg_database info.
  87.  * - thomas 1997-11-01
  88.  * --------------------------------
  89.  */
  90. static void
  91. InitMyDatabaseInfo(char *name)
  92. {
  93. int4 owner;
  94. char    *path,
  95. myPath[MAXPGPATH + 1];
  96. int encoding;
  97. SetDatabaseName(name);
  98. GetRawDatabaseInfo(name, &owner, &MyDatabaseId, myPath, &encoding);
  99. if (!OidIsValid(MyDatabaseId))
  100. elog(FATAL,
  101.  "Database %s does not exist in %s",
  102.  DatabaseName,
  103.  DatabaseRelationName);
  104. path = ExpandDatabasePath(myPath);
  105. SetDatabasePath(path);
  106. #ifdef MULTIBYTE
  107. SetDatabaseEncoding(encoding);
  108. #endif
  109. return;
  110. } /* InitMyDatabaseInfo() */
  111. /*
  112.  * DoChdirAndInitDatabaseNameAndPath
  113.  * Set current directory to the database directory for the database
  114.  * named <name>.
  115.  * Also set global variables DatabasePath and DatabaseName to those
  116.  * values.  Also check for proper version of database system and
  117.  * database.  Exit program via elog() if anything doesn't check out.
  118.  *
  119.  * Arguments:
  120.  * Path and name are invalid if it invalid as a string.
  121.  * Path is "badly formatted" if it is not a string containing a path
  122.  * to a writable directory.
  123.  * Name is "badly formatted" if it contains more than 16 characters or if
  124.  * it is a bad file name (e.g., it contains a '/' or an 8-bit character).
  125.  *
  126.  * Exceptions:
  127.  * BadState if called more than once.
  128.  * BadArg if both path and name are "badly formatted" or invalid.
  129.  * BadArg if path and name are both "inconsistent" and valid.
  130.  *
  131.  * This routine is inappropriate in bootstrap mode, since the directories
  132.  * and version files need not exist yet if we're in bootstrap mode.
  133.  */
  134. static void
  135. VerifySystemDatabase()
  136. {
  137. char    *reason;
  138. /* Failure reason returned by some function.  NULL if no failure */
  139. int fd;
  140. char errormsg[1000];
  141. errormsg[0] = '';
  142. #ifndef __CYGWIN32__
  143. if ((fd = open(DataDir, O_RDONLY, 0)) == -1)
  144. #else
  145. if ((fd = open(DataDir, O_RDONLY | O_DIROPEN, 0)) == -1)
  146. #endif
  147. sprintf(errormsg, "Database system does not exist.  "
  148. "PGDATA directory '%s' not found.ntNormally, you "
  149. "create a database system by running initdb.",
  150. DataDir);
  151. else
  152. {
  153. close(fd);
  154. ValidatePgVersion(DataDir, &reason);
  155. if (reason != NULL)
  156. sprintf(errormsg,
  157. "InitPostgres could not validate that the database"
  158. " system version is compatible with this level of"
  159. " Postgres.ntYou may need to run initdb to create"
  160. " a new database system.nt%s", reason);
  161. }
  162. if (errormsg[0] != '')
  163. elog(FATAL, errormsg);
  164. /* Above does not return */
  165. } /* VerifySystemDatabase() */
  166. static void
  167. VerifyMyDatabase()
  168. {
  169. const char *name;
  170. const char *myPath;
  171. /* Failure reason returned by some function.  NULL if no failure */
  172. char    *reason;
  173. int fd;
  174. char errormsg[1000];
  175. name = DatabaseName;
  176. myPath = DatabasePath;
  177. #ifndef __CYGWIN32__
  178. if ((fd = open(myPath, O_RDONLY, 0)) == -1)
  179. #else
  180. if ((fd = open(myPath, O_RDONLY | O_DIROPEN, 0)) == -1)
  181. #endif
  182. sprintf(errormsg,
  183. "Database '%s' does not exist."
  184. "ntWe know this because the directory '%s' does not exist."
  185. "ntYou can create a database with the SQL command"
  186. " CREATE DATABASE.ntTo see what databases exist,"
  187. " look at the subdirectories of '%s/base/'.",
  188. name, myPath, DataDir);
  189. else
  190. {
  191. close(fd);
  192. ValidatePgVersion(myPath, &reason);
  193. if (reason != NULL)
  194. sprintf(errormsg,
  195. "InitPostgres could not validate that the database"
  196. " version is compatible with this level of Postgres"
  197. "nteven though the database system as a whole"
  198. " appears to be at a compatible level."
  199. "ntYou may need to recreate the database with SQL"
  200. " commands DROP DATABASE and CREATE DATABASE."
  201. "nt%s", reason);
  202. else
  203. {
  204. /*
  205.  * The directories and PG_VERSION files are in order.
  206.  */
  207. int rc; /* return code from some function we call */
  208. #ifdef FILEDEBUG
  209. printf("Try changing directory for database %s to %sn", name, myPath);
  210. #endif
  211. rc = chdir(myPath);
  212. if (rc < 0)
  213. sprintf(errormsg,
  214. "InitPostgres unable to change "
  215. "current directory to '%s', errno = %s (%d).",
  216. myPath, strerror(errno), errno);
  217. else
  218. errormsg[0] = '';
  219. }
  220. }
  221. if (errormsg[0] != '')
  222. elog(FATAL, errormsg);
  223. /* Above does not return */
  224. } /* VerifyMyDatabase() */
  225. /* --------------------------------
  226.  * InitUserid
  227.  *
  228.  * initializes crap associated with the user id.
  229.  * --------------------------------
  230.  */
  231. static void
  232. InitUserid()
  233. {
  234. setuid(geteuid());
  235. SetUserId();
  236. }
  237. /* --------------------------------
  238.  * InitCommunication
  239.  *
  240.  * This routine initializes stuff needed for ipc, locking, etc.
  241.  * it should be called something more informative.
  242.  *
  243.  * Note:
  244.  * This does not set MyBackendId. MyBackendTag is set, however.
  245.  * --------------------------------
  246.  */
  247. static void
  248. InitCommunication()
  249. {
  250. char    *postid; /* value of environment variable */
  251. char    *postport; /* value of environment variable */
  252. char    *ipc_key; /* value of environemnt variable */
  253. IPCKey key = 0;
  254. /* ----------------
  255.  * try and get the backend tag from POSTID
  256.  * ----------------
  257.  */
  258. MyBackendId = -1;
  259. postid = getenv("POSTID");
  260. if (!PointerIsValid(postid))
  261. MyBackendTag = -1;
  262. else
  263. {
  264. MyBackendTag = atoi(postid);
  265. Assert(MyBackendTag >= 0);
  266. }
  267. ipc_key = getenv("IPC_KEY");
  268. if (!PointerIsValid(ipc_key))
  269. key = -1;
  270. else
  271. {
  272. key = atoi(ipc_key);
  273. Assert(MyBackendTag >= 0);
  274. }
  275. postport = getenv("POSTPORT");
  276. if (PointerIsValid(postport))
  277. {
  278. if (MyBackendTag == -1)
  279. elog(FATAL, "InitCommunication: missing POSTID");
  280. /*
  281.  * Enable this if you are trying to force the backend to run as if
  282.  * it is running under the postmaster.
  283.  *
  284.  * This goto forces Postgres to attach to shared memory instead of
  285.  * using malloc'ed memory (which is the normal behavior if run
  286.  * directly).
  287.  *
  288.  * To enable emulation, run the following shell commands (in addition
  289.  * to enabling this goto)
  290.  *
  291.  * % setenv POSTID 1 % setenv POSTPORT 4321 % setenv IPC_KEY 4321000
  292.  * % postmaster & % kill -9 %1
  293.  *
  294.  * Upon doing this, Postmaster will have allocated the shared memory
  295.  * resources that Postgres will attach to if you enable
  296.  * EMULATE_UNDER_POSTMASTER.
  297.  *
  298.  * This comment may well age with time - it is current as of 8
  299.  * January 1990
  300.  *
  301.  * Greg
  302.  */
  303. #ifdef EMULATE_UNDER_POSTMASTER
  304. goto forcesharedmemory;
  305. #endif
  306. }
  307. else if (IsUnderPostmaster)
  308. {
  309. elog(FATAL,
  310.  "InitCommunication: under postmaster and POSTPORT not set");
  311. }
  312. else
  313. {
  314. /* ----------------
  315.  * assume we're running a postgres backend by itself with
  316.  * no front end or postmaster.
  317.  * ----------------
  318.  */
  319. if (MyBackendTag == -1)
  320. MyBackendTag = 1;
  321. key = PrivateIPCKey;
  322. }
  323. /* ----------------
  324.  * initialize shared memory and semaphores appropriately.
  325.  * ----------------
  326.  */
  327. #ifdef EMULATE_UNDER_POSTMASTER
  328. forcesharedmemory:
  329. #endif
  330. if (!IsUnderPostmaster) /* postmaster already did this */
  331. {
  332. PostgresIpcKey = key;
  333. AttachSharedMemoryAndSemaphores(key);
  334. }
  335. }
  336. /* --------------------------------
  337.  * InitStdio
  338.  *
  339.  * this routine consists of a bunch of code fragments
  340.  * that used to be randomly scattered through cinit().
  341.  * they all seem to do stuff associated with io.
  342.  * --------------------------------
  343.  */
  344. static void
  345. InitStdio()
  346. {
  347. DebugFileOpen();
  348. }
  349. /* --------------------------------
  350.  * InitPostgres
  351.  * Initialize POSTGRES.
  352.  *
  353.  * Note:
  354.  * Be very careful with the order of calls in the InitPostgres function.
  355.  * --------------------------------
  356.  */
  357. bool PostgresIsInitialized = false;
  358. extern int NBuffers;
  359. /*
  360.  * this global is used by wei for testing his code, but must be declared
  361.  * here rather than in postgres.c so that it's defined for cinterface.a
  362.  * applications.
  363.  */
  364. /*int testFlag = 0;*/
  365. int lockingOff = 0;
  366. /*
  367.  */
  368. void
  369. InitPostgres(char *name) /* database name */
  370. {
  371. bool bootstrap; /* true if BootstrapProcessing */
  372. /* ----------------
  373.  * see if we're running in BootstrapProcessing mode
  374.  * ----------------
  375.  */
  376. bootstrap = IsBootstrapProcessingMode();
  377. /* ----------------
  378.  * turn on the exception handler. Note: we cannot use elog, Assert,
  379.  * AssertState, etc. until after exception handling is on.
  380.  * ----------------
  381.  */
  382. EnableExceptionHandling(true);
  383. /* ----------------
  384.  * A stupid check to make sure we don't call this more than once.
  385.  * But things like ReinitPostgres() get around this by just diddling
  386.  * the PostgresIsInitialized flag.
  387.  * ----------------
  388.  */
  389. AssertState(!PostgresIsInitialized);
  390. /* ----------------
  391.  * Memory system initialization.
  392.  * (we may call palloc after EnableMemoryContext())
  393.  *
  394.  * Note EnableMemoryContext() must happen before EnablePortalManager().
  395.  * ----------------
  396.  */
  397. EnableMemoryContext(true); /* initializes the "top context" */
  398. EnablePortalManager(true); /* memory for portal/transaction stuff */
  399. /* ----------------
  400.  * initialize the backend local portal stack used by
  401.  * internal PQ function calls.  see src/lib/libpq/be-dumpdata.c
  402.  * This is different from the "portal manager" so this goes here.
  403.  * -cim 2/12/91
  404.  * ----------------
  405.  */
  406. be_portalinit();
  407. /* ----------------
  408.  *  attach to shared memory and semaphores, and initialize our
  409.  *  input/output/debugging file descriptors.
  410.  * ----------------
  411.  */
  412. InitCommunication();
  413. InitStdio();
  414. /*
  415.  * initialize the local buffer manager
  416.  */
  417. InitLocalBuffer();
  418. if (!TransactionFlushEnabled())
  419. on_shmem_exit(FlushBufferPool, (caddr_t) NULL);
  420. /* ----------------
  421.  * initialize the database id used for system caches and lock tables
  422.  * ----------------
  423.  */
  424. if (bootstrap)
  425. {
  426. SetDatabasePath(ExpandDatabasePath(name));
  427. SetDatabaseName(name);
  428. LockDisable(true);
  429. }
  430. else
  431. {
  432. VerifySystemDatabase();
  433. InitMyDatabaseInfo(name);
  434. VerifyMyDatabase();
  435. }
  436. /*
  437.  * Code after this point assumes we are in the proper directory!
  438.  *
  439.  * So, how do we implement alternate locations for databases? There are
  440.  * two possible locations for tables and we need to look in
  441.  * DataDir/pg_database to find the true location of an individual
  442.  * database. We can brute-force it as done in InitMyDatabaseInfo(), or
  443.  * we can be patient and wait until we open pg_database gracefully.
  444.  * Will try that, but may not work... - thomas 1997-11-01
  445.  */
  446. /* Does not touch files (?) - thomas 1997-11-01 */
  447. smgrinit();
  448. /* ----------------
  449.  * initialize the transaction system and the relation descriptor cache.
  450.  * Note we have to make certain the lock manager is off while we do this.
  451.  * ----------------
  452.  */
  453. AmiTransactionOverride(IsBootstrapProcessingMode());
  454. LockDisable(true);
  455. /*
  456.  * Part of the initialization processing done here sets a read lock on
  457.  * pg_log. Since locking is disabled the set doesn't have intended
  458.  * effect of locking out writers, but this is ok, since we only lock
  459.  * it to examine AMI transaction status, and this is never written
  460.  * after initdb is done. -mer 15 June 1992
  461.  */
  462. RelationInitialize(); /* pre-allocated reldescs created here */
  463. InitializeTransactionSystem(); /* pg_log,etc init/crash recovery
  464.  * here */
  465. LockDisable(false);
  466. /* ----------------
  467.  * anyone knows what this does?  something having to do with
  468.  * system catalog cache invalidation in the case of multiple
  469.  * backends, I think -cim 10/3/90
  470.  * Sets up MyBackendId a unique backend identifier.
  471.  * ----------------
  472.  */
  473. InitSharedInvalidationState();
  474. /* ----------------
  475.  * Set up a per backend process in shared memory.  Must be done after
  476.  * InitSharedInvalidationState() as it relies on MyBackendId being
  477.  * initialized already.  XXX -mer 11 Aug 1991
  478.  * ----------------
  479.  */
  480. InitProcess(PostgresIpcKey);
  481. if (MyBackendId > MAXBACKENDS || MyBackendId <= 0)
  482. {
  483. elog(FATAL, "cinit2: bad backend id %d (%d)",
  484.  MyBackendTag,
  485.  MyBackendId);
  486. }
  487. /* ----------------
  488.  * initialize the access methods.
  489.  * Does not touch files (?) - thomas 1997-11-01
  490.  * ----------------
  491.  */
  492. initam();
  493. /* ----------------
  494.  * initialize all the system catalog caches.
  495.  * ----------------
  496.  */
  497. zerocaches();
  498. /*
  499.  * Does not touch files since all routines are builtins (?) - thomas
  500.  * 1997-11-01
  501.  */
  502. InitCatalogCache();
  503. /* ----------------
  504.  *  set ourselves to the proper user id and figure out our postgres
  505.  *  user id.  If we ever add security so that we check for valid
  506.  *  postgres users, we might do it here.
  507.  * ----------------
  508.  */
  509. InitUserid();
  510. /* ----------------
  511.  *  initialize local data in cache invalidation stuff
  512.  * ----------------
  513.  */
  514. if (!bootstrap)
  515. InitLocalInvalidateData();
  516. /* ----------------
  517.  * ok, all done, now let's make sure we don't do it again.
  518.  * ----------------
  519.  */
  520. PostgresIsInitialized = true;
  521. /*   on_shmem_exit(DestroyLocalRelList, (caddr_t) NULL); */
  522. /* ----------------
  523.  * Done with "InitPostgres", now change to NormalProcessing unless
  524.  * we're in BootstrapProcessing mode.
  525.  * ----------------
  526.  */
  527. if (!bootstrap)
  528. SetProcessingMode(NormalProcessing);
  529. /*   if (testFlag || lockingOff) */
  530. if (lockingOff)
  531. LockDisable(true);
  532. }