libxbps: file including in xbps.conf supports relative paths.

This commit is contained in:
Enno Boland
2014-05-13 11:37:09 +02:00
parent 4070255529
commit 152ec0354f
10 changed files with 123 additions and 0 deletions

View File

@ -37,6 +37,7 @@
#include <dirent.h>
#include <ctype.h>
#include <glob.h>
#include <libgen.h>
#include "xbps_api_impl.h"
@ -179,6 +180,8 @@ parse_file(struct xbps_handle *xhp, const char *path, bool nested, bool vpkgconf
size_t len, nlines = 0;
ssize_t read;
char *line = NULL;
char ocwd[XBPS_MAXPATH], tmppath[XBPS_MAXPATH];
char *cwd;
int rv = 0;
if ((fp = fopen(path, "r")) == NULL) {
@ -191,6 +194,20 @@ parse_file(struct xbps_handle *xhp, const char *path, bool nested, bool vpkgconf
xbps_dbg_printf(xhp, "Parsing configuration file: %s\n", path);
}
/* cwd to the dir containing the config file */
strncpy(tmppath, path, sizeof(tmppath));
cwd = dirname(tmppath);
if(getcwd(ocwd, sizeof(ocwd)) == NULL) {
rv = errno;
xbps_dbg_printf(xhp, "cannot get cwd: %s\n", strerror(rv));
return rv;
}
if(chdir(cwd)) {
rv = errno;
xbps_dbg_printf(xhp, "cannot chdir to %s: %s\n", cwd, strerror(rv));
return rv;
}
while ((read = getline(&line, &len, fp)) != -1) {
char *p, *k, *v;
@ -244,6 +261,13 @@ parse_file(struct xbps_handle *xhp, const char *path, bool nested, bool vpkgconf
free(line);
fclose(fp);
/* Going back to old working directory */
if(chdir(ocwd)) {
rv = errno;
xbps_dbg_printf(xhp, "cannot chdir to %s: %s\n", ocwd, strerror(rv));
return rv;
}
return rv;
}