2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* handle.c
|
|
|
|
*
|
2006-01-02 14:55:35 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.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"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <syslog.h>
|
2006-05-14 22:19:57 -04:00
|
|
|
#include <libintl.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
/* pacman */
|
|
|
|
#include "util.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "trans.h"
|
|
|
|
#include "alpm.h"
|
|
|
|
#include "handle.h"
|
|
|
|
|
|
|
|
/* log */
|
2005-03-16 15:06:11 -05:00
|
|
|
extern alpm_cb_log pm_logcb;
|
|
|
|
extern unsigned char pm_logmask;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
pmhandle_t *handle_new()
|
|
|
|
{
|
|
|
|
pmhandle_t *handle;
|
|
|
|
|
|
|
|
handle = (pmhandle_t *)malloc(sizeof(pmhandle_t));
|
|
|
|
if(handle == NULL) {
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes"), sizeof(pmhandle_t));
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_MEMORY, NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2005-04-16 12:43:55 -04:00
|
|
|
memset(handle, 0, sizeof(pmhandle_t));
|
2005-10-05 17:50:58 -04:00
|
|
|
handle->lckfd = -1;
|
2005-04-16 12:43:55 -04:00
|
|
|
|
2006-01-07 05:03:18 -05:00
|
|
|
#ifndef CYGWIN
|
2005-03-14 20:51:43 -05:00
|
|
|
/* see if we're root or not */
|
|
|
|
handle->uid = geteuid();
|
2006-01-21 11:50:01 -05:00
|
|
|
#ifndef FAKEROOT
|
2005-03-14 20:51:43 -05:00
|
|
|
if(!handle->uid && getenv("FAKEROOTKEY")) {
|
|
|
|
/* fakeroot doesn't count, we're non-root */
|
|
|
|
handle->uid = 99;
|
|
|
|
}
|
2006-01-21 11:50:01 -05:00
|
|
|
#endif
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
/* see if we're root or not (fakeroot does not count) */
|
2006-01-21 11:50:01 -05:00
|
|
|
#ifndef FAKEROOT
|
2005-03-18 13:36:29 -05:00
|
|
|
if(handle->uid == 0 && !getenv("FAKEROOTKEY")) {
|
2006-01-21 11:50:01 -05:00
|
|
|
#else
|
|
|
|
if(handle->uid == 0) {
|
|
|
|
#endif
|
2005-03-14 20:51:43 -05:00
|
|
|
handle->access = PM_ACCESS_RW;
|
|
|
|
} else {
|
|
|
|
handle->access = PM_ACCESS_RO;
|
|
|
|
}
|
2006-01-07 05:03:18 -05:00
|
|
|
#else
|
|
|
|
handle->access = PM_ACCESS_RW;
|
|
|
|
#endif
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-02-20 15:59:35 -05:00
|
|
|
handle->dbpath = strdup(PM_DBPATH);
|
|
|
|
handle->cachedir = strdup(PM_CACHEDIR);
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
int handle_free(pmhandle_t *handle)
|
|
|
|
{
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
/* close logfiles */
|
|
|
|
if(handle->logfd) {
|
|
|
|
fclose(handle->logfd);
|
|
|
|
handle->logfd = NULL;
|
|
|
|
}
|
|
|
|
if(handle->usesyslog) {
|
|
|
|
handle->usesyslog = 0;
|
|
|
|
closelog();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free memory */
|
|
|
|
FREETRANS(handle->trans);
|
|
|
|
FREE(handle->root);
|
|
|
|
FREE(handle->dbpath);
|
2005-12-28 05:15:55 -05:00
|
|
|
FREE(handle->cachedir);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREE(handle->logfile);
|
|
|
|
FREELIST(handle->dbs_sync);
|
|
|
|
FREELIST(handle->noupgrade);
|
2005-12-28 05:15:55 -05:00
|
|
|
FREELIST(handle->noextract);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREELIST(handle->ignorepkg);
|
|
|
|
free(handle);
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int handle_set_option(pmhandle_t *handle, unsigned char val, unsigned long data)
|
|
|
|
{
|
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
switch(val) {
|
|
|
|
case PM_OPT_DBPATH:
|
2005-03-28 14:59:33 -05:00
|
|
|
if(handle->dbpath) {
|
|
|
|
FREE(handle->dbpath);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2005-03-28 14:59:33 -05:00
|
|
|
handle->dbpath = strdup((data && strlen((char *)data) != 0) ? (char *)data : PM_DBPATH);
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_DBPATH set to '%s'"), handle->dbpath);
|
2005-03-14 20:51:43 -05:00
|
|
|
break;
|
2005-10-10 16:41:35 -04:00
|
|
|
case PM_OPT_CACHEDIR:
|
|
|
|
if(handle->cachedir) {
|
|
|
|
FREE(handle->cachedir);
|
|
|
|
}
|
|
|
|
handle->cachedir = strdup((data && strlen((char *)data) != 0) ? (char *)data : PM_CACHEDIR);
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_CACHEDIR set to '%s'"), handle->cachedir);
|
2005-10-10 16:41:35 -04:00
|
|
|
break;
|
2005-03-14 20:51:43 -05:00
|
|
|
case PM_OPT_LOGFILE:
|
2005-03-18 13:36:29 -05:00
|
|
|
if((char *)data == NULL || handle->uid != 0) {
|
2005-03-14 20:51:43 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
if(handle->logfile) {
|
|
|
|
FREE(handle->logfile);
|
|
|
|
}
|
|
|
|
if(handle->logfd) {
|
|
|
|
if(fclose(handle->logfd) != 0) {
|
|
|
|
handle->logfd = NULL;
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_OPT_LOGFILE, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
handle->logfd = NULL;
|
|
|
|
}
|
|
|
|
if((handle->logfd = fopen((char *)data, "a")) == NULL) {
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("can't open log file %s"), (char *)data);
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_OPT_LOGFILE, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
handle->logfile = strdup((char *)data);
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_LOGFILE set to '%s'"), (char *)data);
|
2005-03-14 20:51:43 -05:00
|
|
|
break;
|
|
|
|
case PM_OPT_NOUPGRADE:
|
|
|
|
if((char *)data && strlen((char *)data) != 0) {
|
2006-02-17 17:35:26 -05:00
|
|
|
handle->noupgrade = _alpm_list_add(handle->noupgrade, strdup((char *)data));
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("'%s' added to PM_OPT_NOUPGRADE"), (char *)data);
|
2005-03-14 20:51:43 -05:00
|
|
|
} else {
|
|
|
|
FREELIST(handle->noupgrade);
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_NOUPGRADE flushed"));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
break;
|
2005-10-07 19:29:49 -04:00
|
|
|
case PM_OPT_NOEXTRACT:
|
|
|
|
if((char *)data && strlen((char *)data) != 0) {
|
2006-02-17 17:35:26 -05:00
|
|
|
handle->noextract = _alpm_list_add(handle->noextract, strdup((char *)data));
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("'%s' added to PM_OPT_NOEXTRACT"), (char *)data);
|
2005-10-07 19:29:49 -04:00
|
|
|
} else {
|
|
|
|
FREELIST(handle->noextract);
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_NOEXTRACT flushed"));
|
2005-10-07 19:29:49 -04:00
|
|
|
}
|
|
|
|
break;
|
2005-03-14 20:51:43 -05:00
|
|
|
case PM_OPT_IGNOREPKG:
|
|
|
|
if((char *)data && strlen((char *)data) != 0) {
|
2006-02-17 17:35:26 -05:00
|
|
|
handle->ignorepkg = _alpm_list_add(handle->ignorepkg, strdup((char *)data));
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("'%s' added to PM_OPT_IGNOREPKG"), (char *)data);
|
2005-03-14 20:51:43 -05:00
|
|
|
} else {
|
|
|
|
FREELIST(handle->ignorepkg);
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_IGNOREPKG flushed"));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PM_OPT_USESYSLOG:
|
|
|
|
if(data != 0 && data != 1) {
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_OPT_USESYSLOG, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
if(handle->usesyslog == data) {
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
if(handle->usesyslog) {
|
|
|
|
closelog();
|
|
|
|
} else {
|
|
|
|
openlog("alpm", 0, LOG_USER);
|
|
|
|
}
|
|
|
|
handle->usesyslog = (unsigned short)data;
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_USESYSLOG set to '%d'"), handle->usesyslog);
|
2005-03-14 20:51:43 -05:00
|
|
|
break;
|
|
|
|
case PM_OPT_LOGCB:
|
2005-03-16 15:06:11 -05:00
|
|
|
pm_logcb = (alpm_cb_log)data;
|
2005-03-14 20:51:43 -05:00
|
|
|
break;
|
|
|
|
case PM_OPT_LOGMASK:
|
2005-03-16 15:06:11 -05:00
|
|
|
pm_logmask = (unsigned char)data;
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_FLOW2, _("PM_OPT_LOGMASK set to '%02x'"), (unsigned char)data);
|
2005-03-14 20:51:43 -05:00
|
|
|
break;
|
|
|
|
default:
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_WRONG_ARGS, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int handle_get_option(pmhandle_t *handle, unsigned char val, long *data)
|
|
|
|
{
|
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
switch(val) {
|
|
|
|
case PM_OPT_ROOT: *data = (long)handle->root; break;
|
|
|
|
case PM_OPT_DBPATH: *data = (long)handle->dbpath; break;
|
2005-10-10 16:41:35 -04:00
|
|
|
case PM_OPT_CACHEDIR: *data = (long)handle->cachedir; break;
|
2005-03-14 20:51:43 -05:00
|
|
|
case PM_OPT_LOCALDB: *data = (long)handle->db_local; break;
|
|
|
|
case PM_OPT_SYNCDB: *data = (long)handle->dbs_sync; break;
|
|
|
|
case PM_OPT_LOGFILE: *data = (long)handle->logfile; break;
|
|
|
|
case PM_OPT_NOUPGRADE: *data = (long)handle->noupgrade; break;
|
2005-10-07 19:29:49 -04:00
|
|
|
case PM_OPT_NOEXTRACT: *data = (long)handle->noextract; break;
|
2005-03-14 20:51:43 -05:00
|
|
|
case PM_OPT_IGNOREPKG: *data = (long)handle->ignorepkg; break;
|
|
|
|
case PM_OPT_USESYSLOG: *data = handle->usesyslog; break;
|
2005-03-16 15:06:11 -05:00
|
|
|
case PM_OPT_LOGCB: *data = (long)pm_logcb; break;
|
|
|
|
case PM_OPT_LOGMASK: *data = pm_logmask; break;
|
2005-03-14 20:51:43 -05:00
|
|
|
default:
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_WRONG_ARGS, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|