generic-poky/meta/packages/pseudo/pseudo/data-as-env.patch

383 lines
11 KiB
Diff

We observed the pseudo database becoming large and corrupted when undergoing
significant use (generating multiple output package types).
This patch checks for the existence of an PSEUDO_DATADIR environment variable
and, when it exists, uses the directory specified there to store the pseudo
database. This should enable us to use a different database for each run of
pseudo.
JL (23/07/10)
Updates to include lock/log/socket/pid files
RP (24/07/10)
Index: git/pseudo.h
===================================================================
--- git.orig/pseudo.h 2010-07-24 00:28:35.762423800 +0100
+++ git/pseudo.h 2010-07-24 10:34:33.902335659 +0100
@@ -123,6 +123,7 @@
extern char *pseudo_fix_path(const char *, const char *, size_t, size_t, size_t *, int);
extern char **pseudo_dropenv(char * const *);
extern char **pseudo_setupenv(char * const *, char *);
+extern char *pseudo_data_path(char *);
extern char *pseudo_prefix_path(char *);
extern char *pseudo_get_prefix(char *);
extern int pseudo_logfile(char *defname);
@@ -134,10 +135,16 @@
extern char *pseudo_version;
-#define PSEUDO_LOCKFILE PSEUDO_DATA "/pseudo.lock"
-#define PSEUDO_LOGFILE PSEUDO_DATA "/pseudo.log"
-#define PSEUDO_PIDFILE PSEUDO_DATA "/pseudo.pid"
-#define PSEUDO_SOCKET PSEUDO_DATA "/pseudo.socket"
+#define PSEUDO_LOCKFILE "/pseudo.lock"
+#define PSEUDO_LOGFILE "/pseudo.log"
+#define PSEUDO_PIDFILE "/pseudo.pid"
+#define PSEUDO_SOCKET "/pseudo.socket"
+
+extern char *pseudo_get_pid();
+extern char *pseudo_get_lockfile();
+extern char *pseudo_get_logfile();
+extern char *pseudo_get_socketfile();
+
/* some systems might not have *at(). We like to define operations in
* terms of each other, and for instance, open(...) is the same as
Index: git/pseudo_db.c
===================================================================
--- git.orig/pseudo_db.c 2010-07-24 00:28:35.762423800 +0100
+++ git/pseudo_db.c 2010-07-24 00:28:36.282335730 +0100
@@ -465,17 +465,18 @@
char *errmsg;
static int registered_cleanup = 0;
char *dbfile;
+ char *data_dir;
if (!db)
return 1;
if (*db)
return 0;
if (db == &file_db) {
- dbfile = strdup(PSEUDO_DATA "/files.db");
+ dbfile = pseudo_data_path("files.db");
rc = sqlite3_open(dbfile, db);
free(dbfile);
} else {
- dbfile = strdup(PSEUDO_DATA "/logs.db");
+ dbfile = pseudo_data_path("logs.db");
rc = sqlite3_open(dbfile, db);
free(dbfile);
}
Index: git/pseudo_server.c
===================================================================
--- git.orig/pseudo_server.c 2010-07-24 00:28:35.762423800 +0100
+++ git/pseudo_server.c 2010-07-24 10:27:59.242335869 +0100
@@ -107,7 +107,7 @@
}
/* cd to the data directory */
- pseudo_path = strdup(PSEUDO_DATA);
+ pseudo_path = pseudo_data_path(NULL);
if (!pseudo_path) {
pseudo_diag("can't find %s directory.\n", PSEUDO_DATA);
return 1;
@@ -138,9 +138,9 @@
return 0;
}
setsid();
- pseudo_path = strdup(PSEUDO_PIDFILE);
+ pseudo_path = pseudo_get_pid();
if (!pseudo_path) {
- pseudo_diag("Couldn't get path for %s\n", PSEUDO_PIDFILE);
+ pseudo_diag("Couldn't get pid path\n");
return 1;
}
fp = fopen(pseudo_path, "w");
@@ -156,7 +156,7 @@
pseudo_new_pid();
fclose(stdin);
fclose(stdout);
- if (!pseudo_logfile(PSEUDO_LOGFILE))
+ if (!pseudo_logfile(pseudo_get_logfile()))
fclose(stderr);
}
signal(SIGHUP, quit_now);
Index: git/pseudo_util.c
===================================================================
--- git.orig/pseudo_util.c 2010-07-24 00:28:35.962336149 +0100
+++ git/pseudo_util.c 2010-07-24 10:50:48.062336358 +0100
@@ -593,6 +593,50 @@
return new_environ;
}
+/* get the full path to the datadir for this run of pseudo
+ * file parameter is optional and returns the datadir path
+ * with the file name appended.
+ */
+char *
+pseudo_data_path(char *file) {
+ static char *datadir = NULL;
+ static size_t datadir_len;
+ char *path;
+
+ if (!datadir) {
+ datadir = getenv("PSEUDO_DATADIR");
+ if (!datadir) {
+ datadir = strdup(PSEUDO_DATA);
+ }
+ datadir_len = strlen(datadir);
+ }
+
+ if (!file) {
+ return strdup(datadir);
+ } else {
+ size_t len = datadir_len + strlen(file) + 2;
+ path = malloc(len);
+ if (path) {
+ char *endptr;
+ int rc;
+
+ rc = snprintf(path, len, "%s", datadir);
+ /* this certainly SHOULD be impossible */
+ if ((size_t) rc >= len)
+ rc = len - 1;
+ endptr = path + rc;
+ /* strip extra slashes.
+ * This probably has no real effect, but I don't like
+ * seeing " //" in paths.
+ */
+ while ((endptr > path) && (endptr[-1] == '/'))
+ --endptr;
+ snprintf(endptr, len - (endptr - path), "/%s", file);
+ }
+ return path;
+ }
+}
+
/* get the full path to a file under $PSEUDO_PREFIX. Other ways of
* setting the prefix all set it in the environment.
*/
@@ -691,6 +735,26 @@
return s;
}
+char *
+pseudo_get_pid() {
+ return pseudo_data_path(PSEUDO_PIDFILE);
+}
+
+char *
+pseudo_get_lockfile() {
+ return pseudo_data_path(PSEUDO_LOCKFILE);
+}
+
+char *
+pseudo_get_logfile() {
+ return pseudo_data_path(PSEUDO_LOGFILE);
+}
+
+char *
+pseudo_get_socketfile() {
+ return pseudo_data_path(PSEUDO_SOCKET);
+}
+
/* these functions define the sizes pseudo will try to use
* when trying to allocate space, or guess how much space
* other people will have allocated; see the GNU man page
@@ -844,20 +908,14 @@
/* set up a log file */
int
-pseudo_logfile(char *defname) {
- char *pseudo_path;
+pseudo_logfile(char *pseudo_path) {
char *filename, *s;
extern char *program_invocation_short_name; /* glibcism */
int fd;
if ((filename = getenv("PSEUDO_DEBUG_FILE")) == NULL) {
- if (!defname) {
- pseudo_debug(3, "no special log file requested, using stderr.\n");
- return -1;
- }
- pseudo_path = strdup(defname);
if (!pseudo_path) {
- pseudo_diag("can't get path for prefix/%s\n", PSEUDO_LOGFILE);
+ pseudo_debug(3, "no special log file requested or unable to malloc space, using stderr.\n");
return -1;
}
} else {
@@ -903,6 +961,7 @@
len += 8;
if (prog)
len += strlen(program_invocation_short_name);
+ free(pseudo_path);
pseudo_path = malloc(len);
if (!pseudo_path) {
pseudo_diag("can't allocate space for debug file name.\n");
Index: git/pseudo.c
===================================================================
--- git.orig/pseudo.c 2010-07-24 10:22:10.053594896 +0100
+++ git/pseudo.c 2010-07-24 10:23:20.883585467 +0100
@@ -272,7 +272,7 @@
pseudo_new_pid();
pseudo_debug(3, "opening lock.\n");
- lockname = strdup(PSEUDO_LOCKFILE);
+ lockname = pseudo_get_lockfile();
if (!lockname) {
pseudo_diag("Couldn't allocate a file path.\n");
exit(EXIT_FAILURE);
Index: git/pseudo_client.c
===================================================================
--- git.orig/pseudo_client.c 2010-07-24 10:03:51.933588401 +0100
+++ git/pseudo_client.c 2010-07-25 00:30:29.152364992 +0100
@@ -359,6 +359,7 @@
FILE *fp;
extern char **environ;
int cwd_fd;
+ char *pidpath;
if ((server_pid = fork()) != 0) {
if (server_pid == -1) {
@@ -383,7 +384,12 @@
pseudo_diag("Couldn't change to server dir [%d]: %s\n",
pseudo_dir_fd, strerror(errno));
}
- fp = fopen(PSEUDO_PIDFILE, "r");
+ pidpath = pseudo_get_pid();
+ if (!pidpath) {
+ pseudo_diag("Couldn't get pid path\n");
+ return 1;
+ }
+ fp = fopen(pidpath, "r");
if (fchdir(cwd_fd) == -1) {
pseudo_diag("return to previous directory failed: %s\n",
strerror(errno));
@@ -396,8 +402,9 @@
fclose(fp);
} else {
pseudo_diag("no pid file (%s): %s\n",
- PSEUDO_PIDFILE, strerror(errno));
+ pidpath, strerror(errno));
}
+ free(pidpath);
pseudo_debug(2, "read new pid file: %d\n", server_pid);
/* at this point, we should have a new server_pid */
return 0;
@@ -407,6 +414,8 @@
char **new_environ;
int args;
int fd;
+ int pseudo_prefix_fd;
+ char *pseudo_path;
pseudo_new_pid();
base_args[0] = "bin/pseudo";
@@ -439,9 +448,21 @@
} else {
argv = base_args;
}
- if (fchdir(pseudo_dir_fd)) {
+
+
+ pseudo_path = pseudo_prefix_path(NULL);
+ if (pseudo_path) {
+ pseudo_prefix_fd = open(pseudo_path, O_RDONLY);
+ pseudo_prefix_fd = pseudo_fd(pseudo_prefix_fd, MOVE_FD);
+ free(pseudo_path);
+ } else {
+ pseudo_diag("No prefix available to to find server.\n");
+ exit(1);
+ }
+
+ if (fchdir(pseudo_prefix_fd)) {
pseudo_diag("Couldn't change to server dir [%d]: %s\n",
- pseudo_dir_fd, strerror(errno));
+ pseudo_prefix_fd, strerror(errno));
}
/* close any higher-numbered fds which might be open,
* such as sockets. We don't have to worry about 0 and 1;
@@ -535,10 +556,17 @@
static int
client_connect(void) {
+ char *socketfile = pseudo_get_socketfile();
/* we have a server pid, is it responsive? */
- struct sockaddr_un sun = { AF_UNIX, PSEUDO_SOCKET };
+ struct sockaddr_un sun = { AF_UNIX, "pseudo.socket" };
int cwd_fd;
+ if (!socketfile) {
+ pseudo_diag("Couldn't malloc socketfile");
+
+ return 1;
+ }
+
connect_fd = socket(PF_UNIX, SOCK_STREAM, 0);
connect_fd = pseudo_fd(connect_fd, MOVE_FD);
if (connect_fd == -1) {
@@ -564,7 +592,7 @@
return 1;
}
if (connect(connect_fd, (struct sockaddr *) &sun, sizeof(sun)) == -1) {
- pseudo_debug(3, "can't connect socket to pseudo.socket: (%s)\n", strerror(errno));
+ pseudo_debug(3, "can't connect socket to %s: (%s)\n", sun.sun_path, strerror(errno));
close(connect_fd);
if (fchdir(cwd_fd) == -1) {
pseudo_diag("return to previous directory failed: %s\n",
@@ -588,6 +616,7 @@
FILE *fp;
server_pid = 0;
int cwd_fd;
+ char *pidpath;
/* avoid descriptor leak, I hope */
if (connect_fd >= 0) {
@@ -604,7 +633,12 @@
return 1;
}
if (fchdir(pseudo_dir_fd) != 1) {
- fp = fopen(PSEUDO_PIDFILE, "r");
+ pidpath = pseudo_get_pid();
+ if (!pidpath) {
+ pseudo_diag("Couldn't get pid path\n");
+ return 1;
+ }
+ fp = fopen(pidpath, "r");
if (fchdir(cwd_fd) == -1) {
pseudo_diag("return to previous directory failed: %s\n",
strerror(errno));
@@ -619,6 +653,7 @@
pseudo_debug(1, "Opened server PID file, but didn't get a pid.\n");
}
fclose(fp);
+ free(pidpath);
}
if (server_pid) {
if (kill(server_pid, 0) == -1) {
@@ -710,7 +745,7 @@
pseudo_msg_t *ack;
char *pseudo_path;
- pseudo_path = pseudo_prefix_path(NULL);
+ pseudo_path = pseudo_data_path(NULL);
if (pseudo_dir_fd == -1) {
if (pseudo_path) {
pseudo_dir_fd = open(pseudo_path, O_RDONLY);
Index: git/pseudo_wrappers.c
===================================================================
--- git.orig/pseudo_wrappers.c 2010-07-25 00:21:35.263587003 +0100
+++ git/pseudo_wrappers.c 2010-07-25 00:29:03.052345996 +0100
@@ -180,7 +180,7 @@
* value for cwd.
*/
pseudo_client_reset();
- pseudo_path = pseudo_prefix_path(NULL);
+ pseudo_path = pseudo_data_path(NULL);
if (pseudo_dir_fd == -1) {
if (pseudo_path) {
pseudo_dir_fd = open(pseudo_path, O_RDONLY);