rpm/lib/misc.c

407 lines
9.0 KiB
C
Raw Normal View History

#include "system.h"
#include <rpmlib.h>
#include <rpmmacro.h> /* XXX for rpmGetPath */
#include "misc.h"
char * RPMVERSION = VERSION; /* just to put a marker in librpm.a */
char ** splitString(const char * str, int length, char sep) {
const char * source;
char * s, * dest;
char ** list;
int i;
int fields;
s = malloc(length + 1);
fields = 1;
for (source = str, dest = s, i = 0; i < length; i++, source++, dest++) {
*dest = *source;
if (*dest == sep) fields++;
}
*dest = '\0';
list = malloc(sizeof(char *) * (fields + 1));
dest = s;
list[0] = dest;
i = 1;
while (i < fields) {
if (*dest == sep) {
list[i++] = dest + 1;
*dest = 0;
}
dest++;
}
list[i] = NULL;
return list;
}
void freeSplitString(char ** list) {
free(list[0]);
free(list);
}
int rpmfileexists(const char * filespec) {
struct stat buf;
if (stat(filespec, &buf)) {
switch(errno) {
case ENOENT:
case EINVAL:
return 0;
}
}
return 1;
}
/* compare alpha and numeric segments of two versions */
/* return 1: a is newer than b */
/* 0: a and b are the same version */
/* -1: b is newer than a */
int rpmvercmp(const char * a, const char * b) {
char oldch1, oldch2;
char * str1, * str2;
char * one, * two;
int rc;
int isnum;
/* easy comparison to see if versions are identical */
if (!strcmp(a, b)) return 0;
str1 = alloca(strlen(a) + 1);
str2 = alloca(strlen(b) + 1);
strcpy(str1, a);
strcpy(str2, b);
one = str1;
two = str2;
/* loop through each version segment of str1 and str2 and compare them */
while (*one && *two) {
while (*one && !isalnum(*one)) one++;
while (*two && !isalnum(*two)) two++;
str1 = one;
str2 = two;
/* grab first completely alpha or completely numeric segment */
/* leave one and two pointing to the start of the alpha or numeric */
/* segment and walk str1 and str2 to end of segment */
if (isdigit(*str1)) {
while (*str1 && isdigit(*str1)) str1++;
while (*str2 && isdigit(*str2)) str2++;
isnum = 1;
} else {
while (*str1 && isalpha(*str1)) str1++;
while (*str2 && isalpha(*str2)) str2++;
isnum = 0;
}
/* save character at the end of the alpha or numeric segment */
/* so that they can be restored after the comparison */
oldch1 = *str1;
*str1 = '\0';
oldch2 = *str2;
*str2 = '\0';
/* take care of the case where the two version segments are */
/* different types: one numeric and one alpha */
if (one == str1) return -1; /* arbitrary */
if (two == str2) return -1;
if (isnum) {
/* this used to be done by converting the digit segments */
/* to ints using atoi() - it's changed because long */
/* digit segments can overflow an int - this should fix that. */
/* throw away any leading zeros - it's a number, right? */
while (*one == '0') one++;
while (*two == '0') two++;
/* whichever number has more digits wins */
if (strlen(one) > strlen(two)) return 1;
if (strlen(two) > strlen(one)) return -1;
}
/* strcmp will return which one is greater - even if the two */
/* segments are alpha or if they are numeric. don't return */
/* if they are equal because there might be more segments to */
/* compare */
rc = strcmp(one, two);
if (rc) return rc;
/* restore character that was replaced by null above */
*str1 = oldch1;
one = str1;
*str2 = oldch2;
two = str2;
}
/* this catches the case where all numeric and alpha segments have */
/* compared identically but the segment sepparating characters were */
/* different */
if ((!*one) && (!*two)) return 0;
/* whichever version still has characters left over wins */
if (!*one) return -1; else return 1;
}
void stripTrailingSlashes(char * str) {
char * chptr;
chptr = str + strlen(str) - 1;
while (*chptr == '/' && chptr >= str) {
*chptr = '\0';
chptr--;
}
}
int doputenv(const char *str) {
char * a;
/* FIXME: this leaks memory! */
a = malloc(strlen(str) + 1);
strcpy(a, str);
return putenv(a);
}
int dosetenv(const char *name, const char *value, int overwrite) {
int i;
char * a;
/* FIXME: this leaks memory! */
if (!overwrite && getenv(name)) return 0;
i = strlen(name) + strlen(value) + 2;
a = malloc(i);
if (!a) return 1;
strcpy(a, name);
strcat(a, "=");
strcat(a, value);
return putenv(a);
}
/* unameToUid(), uidTouname() and the group variants are really poorly
implemented. They really ought to use hash tables. I just made the
guess that most files would be owned by root or the same person/group
who owned the last file. Those two values are cached, everything else
is looked up via getpw() and getgr() functions. If this performs
too poorly I'll have to implement it properly :-( */
int unameToUid(char * thisUname, uid_t * uid) {
static char * lastUname = NULL;
static int lastUnameLen = 0;
static int lastUnameAlloced;
static uid_t lastUid;
struct passwd * pwent;
int thisUnameLen;
if (!thisUname) {
lastUnameLen = 0;
return -1;
} else if (!strcmp(thisUname, "root")) {
*uid = 0;
return 0;
}
thisUnameLen = strlen(thisUname);
if (!lastUname || thisUnameLen != lastUnameLen ||
strcmp(thisUname, lastUname)) {
if (lastUnameAlloced < thisUnameLen + 1) {
lastUnameAlloced = thisUnameLen + 10;
lastUname = realloc(lastUname, lastUnameAlloced);
}
strcpy(lastUname, thisUname);
pwent = getpwnam(thisUname);
if (!pwent) {
endpwent();
pwent = getpwnam(thisUname);
if (!pwent) return -1;
}
lastUid = pwent->pw_uid;
}
*uid = lastUid;
return 0;
}
int gnameToGid(char * thisGname, gid_t * gid) {
static char * lastGname = NULL;
static int lastGnameLen = 0;
static int lastGnameAlloced;
static uid_t lastGid;
int thisGnameLen;
struct group * grent;
if (!thisGname) {
lastGnameLen = 0;
return -1;
} else if (!strcmp(thisGname, "root")) {
*gid = 0;
return 0;
}
thisGnameLen = strlen(thisGname);
if (!lastGname || thisGnameLen != lastGnameLen ||
strcmp(thisGname, lastGname)) {
if (lastGnameAlloced < thisGnameLen + 1) {
lastGnameAlloced = thisGnameLen + 10;
lastGname = realloc(lastGname, lastGnameAlloced);
}
strcpy(lastGname, thisGname);
grent = getgrnam(thisGname);
if (!grent) {
endgrent();
grent = getgrnam(thisGname);
if (!grent) return -1;
}
lastGid = grent->gr_gid;
}
*gid = lastGid;
return 0;
}
char * uidToUname(uid_t uid) {
static int lastUid = -1;
static char * lastUname = NULL;
static int lastUnameLen = 0;
struct passwd * pwent;
int len;
if (uid == (uid_t) -1) {
lastUid = -1;
return NULL;
} else if (!uid) {
return "root";
} else if (uid == lastUid) {
return lastUname;
} else {
pwent = getpwuid(uid);
if (!pwent) return NULL;
lastUid = uid;
len = strlen(pwent->pw_name);
if (lastUnameLen < len + 1) {
lastUnameLen = len + 20;
lastUname = realloc(lastUname, lastUnameLen);
}
strcpy(lastUname, pwent->pw_name);
return lastUname;
}
}
char * gidToGname(gid_t gid) {
static int lastGid = -1;
static char * lastGname = NULL;
static int lastGnameLen = 0;
struct group * grent;
int len;
if (gid == (gid_t) -1) {
lastGid = -1;
return NULL;
} else if (!gid) {
return "root";
} else if (gid == lastGid) {
return lastGname;
} else {
grent = getgrgid(gid);
if (!grent) return NULL;
lastGid = gid;
len = strlen(grent->gr_name);
if (lastGnameLen < len + 1) {
lastGnameLen = len + 20;
lastGname = realloc(lastGname, lastGnameLen);
}
strcpy(lastGname, grent->gr_name);
return lastGname;
}
}
int makeTempFile(const char * prefix, const char ** fnptr, FD_t * fdptr) {
const char * fn;
FD_t fd;
int ran;
struct stat sb, sb2;
if (!prefix) prefix = "";
fn = NULL;
srand(time(NULL));
ran = rand() % 100000;
/* maybe this should use link/stat? */
do {
char tfn[32];
sprintf(tfn, "rpm-tmp.%d", ran++);
if (fn) xfree(fn);
fn = rpmGetPath(prefix, "%{_tmppath}/", tfn, NULL);
fd = fdOpen(fn, O_CREAT | O_RDWR | O_EXCL, 0700);
} while (fdFileno(fd) < 0 && errno == EEXIST);
if (!stat(fn, &sb) && S_ISLNK(sb.st_mode)) {
rpmError(RPMERR_SCRIPT, _("error creating temporary file %s"), fn);
xfree(fn);
return 1;
}
if (sb.st_nlink != 1) {
rpmError(RPMERR_SCRIPT, _("error creating temporary file %s"), fn);
xfree(fn);
return 1;
}
fstat(fdFileno(fd), &sb2);
if (sb2.st_ino != sb.st_ino || sb2.st_dev != sb.st_dev) {
rpmError(RPMERR_SCRIPT, _("error creating temporary file %s"), fn);
xfree(fn);
return 1;
}
if (fnptr)
*fnptr = fn;
else
xfree(fn);
*fdptr = fd;
return 0;
}
char * currentDirectory(void) {
int currDirLen;
char * currDir;
currDirLen = 50;
currDir = malloc(currDirLen);
while (!getcwd(currDir, currDirLen) && errno == ERANGE) {
currDirLen += 50;
currDir = realloc(currDir, currDirLen);
}
return currDir;
}