2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* util.c
|
2006-10-15 15:31:03 -04:00
|
|
|
*
|
2006-01-02 14:55:35 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org>
|
|
|
|
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2005-03-14 20:51:43 -05:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
2007-04-29 12:47:02 -04:00
|
|
|
#include <unistd.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <syslog.h>
|
2007-04-29 12:47:02 -04:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
/* libarchive */
|
|
|
|
#include <archive.h>
|
|
|
|
#include <archive_entry.h>
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2007-03-05 17:13:33 -05:00
|
|
|
/* libalpm */
|
|
|
|
#include "util.h"
|
2007-01-19 04:28:44 -05:00
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "log.h"
|
2006-09-28 16:51:33 -04:00
|
|
|
#include "error.h"
|
2006-11-20 04:10:23 -05:00
|
|
|
#include "package.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "alpm.h"
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
#ifdef __sun__
|
|
|
|
/* This is a replacement for strsep which is not portable (missing on Solaris).
|
2007-01-23 22:02:53 -05:00
|
|
|
* Copyright (c) 2001 by François Gouget <fgouget_at_codeweavers.com> */
|
2006-10-15 15:31:03 -04:00
|
|
|
char* strsep(char** str, const char* delims)
|
|
|
|
{
|
|
|
|
char* token;
|
|
|
|
|
|
|
|
if (*str==NULL) {
|
|
|
|
/* No more tokens */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
token=*str;
|
|
|
|
while (**str!='\0') {
|
|
|
|
if (strchr(delims,**str)!=NULL) {
|
|
|
|
**str='\0';
|
|
|
|
(*str)++;
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
(*str)++;
|
|
|
|
}
|
|
|
|
/* There is no other token */
|
|
|
|
*str=NULL;
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Backported from Solaris Express 4/06
|
|
|
|
* Copyright (c) 2006 Sun Microsystems, Inc. */
|
2007-03-03 03:13:59 -05:00
|
|
|
char *mkdtemp(char *template)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
|
|
|
char *t = alloca(strlen(template) + 1);
|
|
|
|
char *r;
|
|
|
|
|
|
|
|
/* Save template */
|
|
|
|
(void) strcpy(t, template);
|
|
|
|
for (; ; ) {
|
|
|
|
r = mktemp(template);
|
|
|
|
|
|
|
|
if (*r == '\0')
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (mkdir(template, 0700) == 0)
|
|
|
|
return (r);
|
|
|
|
|
|
|
|
/* Other errors indicate persistent conditions. */
|
|
|
|
if (errno != EEXIST)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
/* Reset template */
|
|
|
|
(void) strcpy(template, t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* does the same thing as 'mkdir -p' */
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_makepath(const char *path)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
char *orig, *str, *ptr;
|
|
|
|
char full[PATH_MAX] = "";
|
|
|
|
mode_t oldmask;
|
|
|
|
|
|
|
|
oldmask = umask(0000);
|
|
|
|
|
|
|
|
orig = strdup(path);
|
|
|
|
str = orig;
|
|
|
|
while((ptr = strsep(&str, "/"))) {
|
|
|
|
if(strlen(ptr)) {
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
strcat(full, "/");
|
|
|
|
strcat(full, ptr);
|
|
|
|
if(stat(full, &buf)) {
|
2005-03-16 16:56:02 -05:00
|
|
|
if(mkdir(full, 0755)) {
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(orig);
|
2005-03-14 20:51:43 -05:00
|
|
|
umask(oldmask);
|
2007-03-04 04:08:54 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("failed to make path '%s' : %s"),
|
|
|
|
path, strerror(errno));
|
2005-03-14 20:51:43 -05:00
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(orig);
|
2005-03-14 20:51:43 -05:00
|
|
|
umask(oldmask);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_copyfile(const char *src, const char *dest)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
FILE *in, *out;
|
|
|
|
size_t len;
|
|
|
|
char buf[4097];
|
|
|
|
|
|
|
|
in = fopen(src, "r");
|
|
|
|
if(in == NULL) {
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
out = fopen(dest, "w");
|
|
|
|
if(out == NULL) {
|
2005-04-24 05:14:25 -04:00
|
|
|
fclose(in);
|
2005-03-14 20:51:43 -05:00
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while((len = fread(buf, 1, 4096, in))) {
|
|
|
|
fwrite(buf, 1, len, out);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(in);
|
|
|
|
fclose(out);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert a string to uppercase
|
|
|
|
*/
|
|
|
|
char *_alpm_strtoupper(char *str)
|
|
|
|
{
|
|
|
|
char *ptr = str;
|
|
|
|
|
|
|
|
while(*ptr) {
|
|
|
|
(*ptr) = toupper(*ptr);
|
|
|
|
ptr++;
|
|
|
|
}
|
2007-03-03 03:13:59 -05:00
|
|
|
return(str);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Trim whitespace and newlines from a string
|
|
|
|
*/
|
|
|
|
char *_alpm_strtrim(char *str)
|
|
|
|
{
|
|
|
|
char *pch = str;
|
2005-03-19 13:15:31 -05:00
|
|
|
|
2005-03-25 16:13:23 -05:00
|
|
|
if(*str == '\0') {
|
|
|
|
/* string is empty, so we're done. */
|
|
|
|
return(str);
|
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
while(isspace((int)*pch)) {
|
2005-03-14 20:51:43 -05:00
|
|
|
pch++;
|
|
|
|
}
|
|
|
|
if(pch != str) {
|
|
|
|
memmove(str, pch, (strlen(pch) + 1));
|
|
|
|
}
|
2005-03-19 13:15:31 -05:00
|
|
|
|
2005-03-25 16:13:23 -05:00
|
|
|
/* check if there wasn't anything but whitespace in the string. */
|
|
|
|
if(*str == '\0') {
|
|
|
|
return(str);
|
|
|
|
}
|
|
|
|
|
2005-04-24 05:14:25 -04:00
|
|
|
pch = (char *)(str + (strlen(str) - 1));
|
2006-10-15 15:31:03 -04:00
|
|
|
while(isspace((int)*pch)) {
|
2005-03-14 20:51:43 -05:00
|
|
|
pch--;
|
|
|
|
}
|
|
|
|
*++pch = '\0';
|
|
|
|
|
2005-03-25 16:13:23 -05:00
|
|
|
return(str);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a lock file
|
|
|
|
*/
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_lckmk(const char *file)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
int fd, count = 0;
|
2006-10-15 15:31:03 -04:00
|
|
|
char *dir, *ptr;
|
|
|
|
|
|
|
|
/* create the dir of the lockfile first */
|
|
|
|
dir = strdup(file);
|
|
|
|
ptr = strrchr(dir, '/');
|
|
|
|
if(ptr) {
|
|
|
|
*ptr = '\0';
|
|
|
|
}
|
|
|
|
_alpm_makepath(dir);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
while((fd = open(file, O_WRONLY | O_CREAT | O_EXCL, 0000)) == -1 && errno == EACCES) {
|
|
|
|
if(++count < 1) {
|
|
|
|
sleep(1);
|
|
|
|
} else {
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
free(dir);
|
|
|
|
|
2005-10-05 17:50:58 -04:00
|
|
|
return(fd > 0 ? fd : -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove a lock file
|
|
|
|
*/
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_lckrm(const char *file)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2006-01-26 17:16:57 -05:00
|
|
|
if(unlink(file) == -1 && errno != ENOENT) {
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
return(0);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* Compression functions
|
|
|
|
*/
|
|
|
|
|
2006-10-25 14:15:25 -04:00
|
|
|
int _alpm_unpack(const char *archive, const char *prefix, const char *fn)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2006-09-28 16:51:33 -04:00
|
|
|
register struct archive *_archive;
|
|
|
|
struct archive_entry *entry;
|
2005-03-14 20:51:43 -05:00
|
|
|
char expath[PATH_MAX];
|
2007-04-29 12:47:02 -04:00
|
|
|
const int archive_flags = ARCHIVE_EXTRACT_OWNER |
|
|
|
|
ARCHIVE_EXTRACT_PERM |
|
|
|
|
ARCHIVE_EXTRACT_TIME;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
if((_archive = archive_read_new()) == NULL)
|
2006-10-15 15:31:03 -04:00
|
|
|
RET_ERR(PM_ERR_LIBARCHIVE_ERROR, -1);
|
|
|
|
|
2006-09-28 16:51:33 -04:00
|
|
|
archive_read_support_compression_all(_archive);
|
2006-11-14 02:58:42 -05:00
|
|
|
archive_read_support_format_all(_archive);
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2006-11-16 12:24:41 -05:00
|
|
|
if(archive_read_open_file(_archive, archive, ARCHIVE_DEFAULT_BYTES_PER_BLOCK) != ARCHIVE_OK) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not open %s: %s\n"), archive, archive_error_string(_archive));
|
2006-10-15 15:31:03 -04:00
|
|
|
RET_ERR(PM_ERR_PKG_OPEN, -1);
|
2006-11-16 12:24:41 -05:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
while(archive_read_next_header(_archive, &entry) == ARCHIVE_OK) {
|
|
|
|
if (fn && strcmp(fn, archive_entry_pathname(entry))) {
|
|
|
|
if (archive_read_data_skip(_archive) != ARCHIVE_OK)
|
2005-03-14 20:51:43 -05:00
|
|
|
return(1);
|
|
|
|
continue;
|
|
|
|
}
|
2006-11-14 02:58:42 -05:00
|
|
|
snprintf(expath, PATH_MAX, "%s/%s", prefix, archive_entry_pathname(entry));
|
|
|
|
archive_entry_set_pathname(entry, expath);
|
2007-04-29 12:47:02 -04:00
|
|
|
if(archive_read_extract(_archive, entry, archive_flags) != ARCHIVE_OK) {
|
2006-11-16 12:24:41 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not extract %s: %s\n"), archive_entry_pathname(entry), archive_error_string(_archive));
|
2006-10-15 15:31:03 -04:00
|
|
|
return(1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
if(fn) {
|
2006-10-15 15:31:03 -04:00
|
|
|
break;
|
2006-11-14 02:58:42 -05:00
|
|
|
}
|
2006-09-28 16:51:33 -04:00
|
|
|
}
|
|
|
|
|
2006-11-14 02:58:42 -05:00
|
|
|
archive_read_finish(_archive);
|
2006-10-15 15:31:03 -04:00
|
|
|
return(0);
|
2006-09-28 16:51:33 -04:00
|
|
|
}
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* does the same thing as 'rm -rf' */
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_rmrf(const char *path)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
int errflag = 0;
|
|
|
|
struct dirent *dp;
|
|
|
|
DIR *dirp;
|
|
|
|
char name[PATH_MAX];
|
2007-03-19 00:49:28 -04:00
|
|
|
struct stat st;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-03-19 00:49:28 -04:00
|
|
|
if(lstat(path, &st) == 0) {
|
|
|
|
if(!S_ISDIR(st.st_mode)) {
|
2006-10-31 01:39:59 -05:00
|
|
|
if(!unlink(path)) {
|
|
|
|
return(0);
|
|
|
|
} else {
|
|
|
|
if(errno == ENOENT) {
|
|
|
|
return(0);
|
|
|
|
} else {
|
|
|
|
return(1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|
2007-03-19 00:49:28 -04:00
|
|
|
} else {
|
2006-10-31 01:39:59 -05:00
|
|
|
if((dirp = opendir(path)) == (DIR *)-1) {
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
for(dp = readdir(dirp); dp != NULL; dp = readdir(dirp)) {
|
|
|
|
if(dp->d_ino) {
|
|
|
|
sprintf(name, "%s/%s", path, dp->d_name);
|
|
|
|
if(strcmp(dp->d_name, "..") && strcmp(dp->d_name, ".")) {
|
|
|
|
errflag += _alpm_rmrf(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dirp);
|
|
|
|
if(rmdir(path)) {
|
|
|
|
errflag++;
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
return(errflag);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-01-23 22:02:53 -05:00
|
|
|
int _alpm_logaction(unsigned short usesyslog, FILE *f, const char *str)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-17 02:21:07 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("logaction called: %s"), str);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
if(usesyslog) {
|
2007-01-17 02:21:07 -05:00
|
|
|
syslog(LOG_WARNING, "%s", str);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if(f) {
|
|
|
|
time_t t;
|
|
|
|
struct tm *tm;
|
|
|
|
|
|
|
|
t = time(NULL);
|
|
|
|
tm = localtime(&t);
|
|
|
|
|
2007-01-25 20:33:03 -05:00
|
|
|
/* Use ISO-8601 date format */
|
|
|
|
fprintf(f, "[%04d-%02d-%02d %02d:%02d] %s\n",
|
2007-01-30 00:41:13 -05:00
|
|
|
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
|
|
|
|
tm->tm_hour, tm->tm_min, str);
|
2007-01-25 20:33:03 -05:00
|
|
|
|
2007-01-17 02:21:07 -05:00
|
|
|
fflush(f);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_ldconfig(const char *root)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
char line[PATH_MAX];
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
snprintf(line, PATH_MAX, "%setc/ld.so.conf", root);
|
2007-03-03 03:13:59 -05:00
|
|
|
if(stat(line, &buf) == 0) {
|
2005-03-14 20:51:43 -05:00
|
|
|
snprintf(line, PATH_MAX, "%ssbin/ldconfig", root);
|
2007-03-03 03:13:59 -05:00
|
|
|
if(stat(line, &buf) == 0) {
|
2005-03-14 20:51:43 -05:00
|
|
|
char cmd[PATH_MAX];
|
|
|
|
snprintf(cmd, PATH_MAX, "%s -r %s", line, root);
|
|
|
|
system(cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
/* convert a time_t to a string - buffer MUST be large enough for
|
|
|
|
* YYYYMMDDHHMMSS - 15 chars */
|
|
|
|
void _alpm_time2string(time_t t, char *buffer)
|
|
|
|
{
|
|
|
|
if(buffer) {
|
|
|
|
struct tm *lt;
|
|
|
|
lt = localtime(&t);
|
|
|
|
sprintf(buffer, "%4d%02d%02d%02d%02d%02d",
|
|
|
|
lt->tm_year+1900, lt->tm_mon+1, lt->tm_mday,
|
|
|
|
lt->tm_hour, lt->tm_min, lt->tm_sec);
|
|
|
|
buffer[14] = '\0';
|
|
|
|
}
|
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2007-02-13 03:15:38 -05:00
|
|
|
/* Helper function for comparing strings using the
|
|
|
|
* alpm "compare func" signature */
|
|
|
|
int _alpm_str_cmp(const void *s1, const void *s2)
|
|
|
|
{
|
|
|
|
return(strcmp(s1, s2));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* vim: set ts=2 sw=2 noet: */
|