mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
3.4 KiB
166 lines
3.4 KiB
![]()
14 years ago
|
/*-------------------------------------------------------------------------
|
||
|
*
|
||
|
* streamutil.c - utility functions for pg_basebackup and pg_receivelog
|
||
|
*
|
||
|
* Author: Magnus Hagander <magnus@hagander.net>
|
||
|
*
|
||
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
||
|
*
|
||
|
* IDENTIFICATION
|
||
|
* src/bin/pg_basebackup/streamutil.c
|
||
|
*-------------------------------------------------------------------------
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* We have to use postgres.h not postgres_fe.h here, because there's so much
|
||
|
* backend-only stuff in the XLOG include files we need. But we need a
|
||
|
* frontend-ish environment otherwise. Hence this ugly hack.
|
||
|
*/
|
||
|
#define FRONTEND 1
|
||
|
#include "postgres.h"
|
||
|
#include "streamutil.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
const char *progname;
|
||
|
char *dbhost = NULL;
|
||
|
char *dbuser = NULL;
|
||
|
char *dbport = NULL;
|
||
|
int dbgetpassword = 0; /* 0=auto, -1=never, 1=always */
|
||
|
static char *dbpassword = NULL;
|
||
|
PGconn *conn = NULL;
|
||
|
|
||
|
/*
|
||
|
* strdup() and malloc() replacements that prints an error and exits
|
||
|
* if something goes wrong. Can never return NULL.
|
||
|
*/
|
||
|
char *
|
||
|
xstrdup(const char *s)
|
||
|
{
|
||
|
char *result;
|
||
|
|
||
|
result = strdup(s);
|
||
|
if (!result)
|
||
|
{
|
||
|
fprintf(stderr, _("%s: out of memory\n"), progname);
|
||
|
exit(1);
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
void *
|
||
|
xmalloc0(int size)
|
||
|
{
|
||
|
void *result;
|
||
|
|
||
|
result = malloc(size);
|
||
|
if (!result)
|
||
|
{
|
||
|
fprintf(stderr, _("%s: out of memory\n"), progname);
|
||
|
exit(1);
|
||
|
}
|
||
|
MemSet(result, 0, size);
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
|
||
|
PGconn *
|
||
|
GetConnection(void)
|
||
|
{
|
||
|
PGconn *tmpconn;
|
||
|
int argcount = 4; /* dbname, replication, fallback_app_name,
|
||
|
* password */
|
||
|
int i;
|
||
|
const char **keywords;
|
||
|
const char **values;
|
||
|
char *password = NULL;
|
||
|
|
||
|
if (dbhost)
|
||
|
argcount++;
|
||
|
if (dbuser)
|
||
|
argcount++;
|
||
|
if (dbport)
|
||
|
argcount++;
|
||
|
|
||
|
keywords = xmalloc0((argcount + 1) * sizeof(*keywords));
|
||
|
values = xmalloc0((argcount + 1) * sizeof(*values));
|
||
|
|
||
|
keywords[0] = "dbname";
|
||
|
values[0] = "replication";
|
||
|
keywords[1] = "replication";
|
||
|
values[1] = "true";
|
||
|
keywords[2] = "fallback_application_name";
|
||
|
values[2] = progname;
|
||
|
i = 3;
|
||
|
if (dbhost)
|
||
|
{
|
||
|
keywords[i] = "host";
|
||
|
values[i] = dbhost;
|
||
|
i++;
|
||
|
}
|
||
|
if (dbuser)
|
||
|
{
|
||
|
keywords[i] = "user";
|
||
|
values[i] = dbuser;
|
||
|
i++;
|
||
|
}
|
||
|
if (dbport)
|
||
|
{
|
||
|
keywords[i] = "port";
|
||
|
values[i] = dbport;
|
||
|
i++;
|
||
|
}
|
||
|
|
||
|
while (true)
|
||
|
{
|
||
|
if (password)
|
||
|
free(password);
|
||
|
|
||
|
if (dbpassword)
|
||
|
{
|
||
|
/*
|
||
|
* We've saved a password when a previous connection succeeded,
|
||
|
* meaning this is the call for a second session to the same
|
||
|
* database, so just forcibly reuse that password.
|
||
|
*/
|
||
|
keywords[argcount - 1] = "password";
|
||
|
values[argcount - 1] = dbpassword;
|
||
|
dbgetpassword = -1; /* Don't try again if this fails */
|
||
|
}
|
||
|
else if (dbgetpassword == 1)
|
||
|
{
|
||
|
password = simple_prompt(_("Password: "), 100, false);
|
||
|
keywords[argcount - 1] = "password";
|
||
|
values[argcount - 1] = password;
|
||
|
}
|
||
|
|
||
|
tmpconn = PQconnectdbParams(keywords, values, true);
|
||
|
|
||
|
if (PQstatus(tmpconn) == CONNECTION_BAD &&
|
||
|
PQconnectionNeedsPassword(tmpconn) &&
|
||
|
dbgetpassword != -1)
|
||
|
{
|
||
|
dbgetpassword = 1; /* ask for password next time */
|
||
|
PQfinish(tmpconn);
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
if (PQstatus(tmpconn) != CONNECTION_OK)
|
||
|
{
|
||
|
fprintf(stderr, _("%s: could not connect to server: %s\n"),
|
||
|
progname, PQerrorMessage(tmpconn));
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
/* Connection ok! */
|
||
|
free(values);
|
||
|
free(keywords);
|
||
|
|
||
|
/* Store the password for next run */
|
||
|
if (password)
|
||
|
dbpassword = password;
|
||
|
return tmpconn;
|
||
|
}
|
||
|
}
|