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>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* 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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <syslog.h>
|
2006-10-15 15:31:03 -04:00
|
|
|
#include <time.h>
|
2007-08-21 21:28:05 -04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
/* libalpm */
|
|
|
|
#include "handle.h"
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "util.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "trans.h"
|
|
|
|
#include "alpm.h"
|
2006-10-20 21:38:59 -04:00
|
|
|
#include "server.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
pmhandle_t *_alpm_handle_new()
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
pmhandle_t *handle;
|
|
|
|
|
2007-05-14 03:16:55 -04:00
|
|
|
handle = malloc(sizeof(pmhandle_t));
|
2005-03-14 20:51:43 -05:00
|
|
|
if(handle == NULL) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes\n"), 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;
|
2007-07-09 15:22:01 -04:00
|
|
|
handle->logstream = NULL;
|
2005-04-16 12:43:55 -04:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* see if we're root or not */
|
|
|
|
handle->uid = geteuid();
|
2007-06-04 10:37:00 -04:00
|
|
|
handle->root = NULL;
|
|
|
|
handle->dbpath = NULL;
|
2007-06-04 14:50:16 -04:00
|
|
|
handle->cachedirs = NULL;
|
2007-06-04 10:37:00 -04:00
|
|
|
handle->lockfile = NULL;
|
|
|
|
handle->logfile = NULL;
|
2006-02-20 15:59:35 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(handle);
|
|
|
|
}
|
|
|
|
|
2007-04-26 20:29:12 -04:00
|
|
|
void _alpm_handle_free(pmhandle_t *handle)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
ALPM_LOG_FUNC;
|
2007-01-30 03:14:10 -05:00
|
|
|
|
2007-04-26 20:29:12 -04:00
|
|
|
if(handle == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-09 15:22:01 -04:00
|
|
|
/* close logfile */
|
|
|
|
if(handle->logstream) {
|
|
|
|
fclose(handle->logstream);
|
|
|
|
handle->logstream= NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
if(handle->usesyslog) {
|
|
|
|
handle->usesyslog = 0;
|
|
|
|
closelog();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free memory */
|
2007-04-26 19:57:09 -04:00
|
|
|
_alpm_trans_free(handle->trans);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREE(handle->root);
|
|
|
|
FREE(handle->dbpath);
|
2007-06-04 14:50:16 -04:00
|
|
|
FREELIST(handle->cachedirs);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREE(handle->logfile);
|
2007-05-31 02:51:28 -04:00
|
|
|
FREE(handle->lockfile);
|
2006-10-15 15:31:03 -04:00
|
|
|
FREE(handle->xfercommand);
|
2005-03-14 20:51:43 -05:00
|
|
|
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);
|
2006-10-15 15:31:03 -04:00
|
|
|
FREELIST(handle->holdpkg);
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(handle);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-09-11 16:27:55 -04:00
|
|
|
alpm_cb_log SYMEXPORT alpm_option_get_logcb()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->logcb;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_cb_download SYMEXPORT alpm_option_get_dlcb()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->dlcb;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_root()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->root;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_dbpath()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->dbpath;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_cachedirs()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->cachedirs;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_logfile()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->logfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_lockfile()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->lockfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short SYMEXPORT alpm_option_get_usesyslog()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return handle->usesyslog;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_noupgrades()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->noupgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_noextracts()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->noextract;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_ignorepkgs()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->ignorepkg;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_holdpkgs()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->holdpkg;
|
|
|
|
}
|
|
|
|
|
|
|
|
time_t SYMEXPORT alpm_option_get_upgradedelay()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return handle->upgradedelay;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SYMEXPORT *alpm_option_get_xfercommand()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->xfercommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short SYMEXPORT alpm_option_get_nopassiveftp()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return handle->nopassiveftp;
|
|
|
|
}
|
|
|
|
|
|
|
|
pmdb_t SYMEXPORT *alpm_option_get_localdb()
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return handle->db_local;
|
|
|
|
}
|
|
|
|
|
2007-01-30 02:47:19 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_option_get_syncdbs()
|
2007-01-23 22:02:53 -05:00
|
|
|
{
|
2007-09-11 16:27:55 -04:00
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-02-21 01:44:14 -05:00
|
|
|
return handle->dbs_sync;
|
2007-01-23 22:02:53 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-09-11 16:27:55 -04:00
|
|
|
void SYMEXPORT alpm_option_set_logcb(alpm_cb_log cb)
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
handle->logcb = cb;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-09-11 16:27:55 -04:00
|
|
|
void SYMEXPORT alpm_option_set_dlcb(alpm_cb_download cb)
|
|
|
|
{
|
|
|
|
if (handle == NULL) {
|
|
|
|
pm_errno = PM_ERR_HANDLE_NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
handle->dlcb = cb;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_set_root(const char *root)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
struct stat st;
|
|
|
|
char *realroot;
|
|
|
|
size_t rootlen;
|
|
|
|
|
2007-06-07 20:55:13 -04:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!root) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
if(stat(root, &st) == -1 || !S_ISDIR(st.st_mode)) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
|
|
|
return(-1);
|
|
|
|
}
|
2007-03-04 04:08:54 -05:00
|
|
|
/* According to the man page, realpath is safe to use IFF the second arg is
|
|
|
|
* NULL. */
|
2007-08-21 21:28:05 -04:00
|
|
|
realroot = realpath(root, NULL);
|
|
|
|
if(!realroot) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
|
|
|
return(-1);
|
2007-03-04 04:08:54 -05:00
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
/* verify root ends in a '/' */
|
|
|
|
rootlen = strlen(realroot);
|
|
|
|
if(realroot[rootlen-1] != '/') {
|
|
|
|
rootlen += 1;
|
2007-03-04 04:16:28 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
if(handle->root) {
|
|
|
|
FREE(handle->root);
|
2007-02-21 01:44:14 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
handle->root = calloc(rootlen + 1, sizeof(char));
|
|
|
|
strncpy(handle->root, realroot, rootlen);
|
|
|
|
handle->root[rootlen-1] = '/';
|
|
|
|
FREE(realroot);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'root' = %s\n", handle->root);
|
2007-08-21 21:28:05 -04:00
|
|
|
return(0);
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_set_dbpath(const char *dbpath)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
struct stat st;
|
|
|
|
size_t dbpathlen, lockfilelen;
|
|
|
|
const char *lf = "db.lck";
|
|
|
|
|
2007-06-07 20:55:13 -04:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!dbpath) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
|
|
|
return(-1);
|
2007-02-21 01:44:14 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
if(stat(dbpath, &st) == -1 || !S_ISDIR(st.st_mode)) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
/* verify dbpath ends in a '/' */
|
|
|
|
dbpathlen = strlen(dbpath);
|
|
|
|
if(dbpath[dbpathlen-1] != '/') {
|
|
|
|
dbpathlen += 1;
|
|
|
|
}
|
|
|
|
if(handle->dbpath) {
|
|
|
|
FREE(handle->dbpath);
|
|
|
|
}
|
|
|
|
handle->dbpath = calloc(dbpathlen+1, sizeof(char));
|
|
|
|
strncpy(handle->dbpath, dbpath, dbpathlen);
|
|
|
|
handle->dbpath[dbpathlen-1] = '/';
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'dbpath' = %s\n", handle->dbpath);
|
2007-06-27 23:25:04 -04:00
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(handle->lockfile) {
|
|
|
|
FREE(handle->lockfile);
|
|
|
|
}
|
|
|
|
lockfilelen = strlen(handle->dbpath) + strlen(lf) + 1;
|
|
|
|
handle->lockfile = calloc(lockfilelen, sizeof(char));
|
|
|
|
snprintf(handle->lockfile, lockfilelen, "%s%s", handle->dbpath, lf);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'lockfile' = %s\n", handle->lockfile);
|
2007-08-21 21:28:05 -04:00
|
|
|
return(0);
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_add_cachedir(const char *cachedir)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
struct stat st;
|
|
|
|
char *newcachedir;
|
|
|
|
size_t cachedirlen;
|
|
|
|
|
2007-06-07 20:55:13 -04:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!cachedir) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
|
|
|
return(-1);
|
2007-02-21 01:44:14 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
if(stat(cachedir, &st) == -1 || !S_ISDIR(st.st_mode)) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
/* verify cachedir ends in a '/' */
|
|
|
|
cachedirlen = strlen(cachedir);
|
|
|
|
if(cachedir[cachedirlen-1] != '/') {
|
|
|
|
cachedirlen += 1;
|
|
|
|
}
|
|
|
|
newcachedir = calloc(cachedirlen + 1, sizeof(char));
|
|
|
|
strncpy(newcachedir, cachedir, cachedirlen);
|
|
|
|
newcachedir[cachedirlen-1] = '/';
|
|
|
|
handle->cachedirs = alpm_list_add(handle->cachedirs, newcachedir);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'cachedir' = %s\n", newcachedir);
|
2007-08-21 21:28:05 -04:00
|
|
|
return(0);
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
|
|
|
|
2007-06-04 14:50:16 -04:00
|
|
|
void SYMEXPORT alpm_option_set_cachedirs(alpm_list_t *cachedirs)
|
|
|
|
{
|
|
|
|
if(handle->cachedirs) FREELIST(handle->cachedirs);
|
|
|
|
if(cachedirs) handle->cachedirs = cachedirs;
|
|
|
|
}
|
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
int SYMEXPORT alpm_option_set_logfile(const char *logfile)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-08-21 21:28:05 -04:00
|
|
|
char *oldlogfile = handle->logfile;
|
|
|
|
FILE *oldlogstream = handle->logstream;
|
|
|
|
|
2007-02-21 01:44:14 -05:00
|
|
|
ALPM_LOG_FUNC;
|
2007-01-30 03:14:10 -05:00
|
|
|
|
2007-08-21 21:28:05 -04:00
|
|
|
if(!logfile) {
|
|
|
|
pm_errno = PM_ERR_WRONG_ARGS;
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
handle->logfile = strdup(logfile);
|
|
|
|
handle->logstream = fopen(logfile, "a");
|
|
|
|
if(handle->logstream == NULL) {
|
|
|
|
/* TODO we probably want to do this at some point, but right now
|
|
|
|
* it just blows up when a user calls pacman without privilages */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "couldn't open logfile for writing, ignoring\n");
|
2007-08-21 21:28:05 -04:00
|
|
|
/*
|
|
|
|
if(errno == EACCES) {
|
|
|
|
pm_errno = PM_ERR_BADPERMS;
|
|
|
|
} else if(errno == ENOENT) {
|
|
|
|
pm_errno = PM_ERR_NOT_A_DIR;
|
|
|
|
} else {
|
|
|
|
pm_errno = PM_ERR_SYSTEM;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
* reset logfile to its previous value *
|
|
|
|
FREE(handle->logfile);
|
|
|
|
handle->logfile = oldlogfile;
|
|
|
|
handle->logstream = oldlogstream;
|
|
|
|
return(-1);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if(oldlogfile) {
|
|
|
|
FREE(oldlogfile);
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
if(oldlogstream) {
|
|
|
|
fclose(oldlogstream);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "option 'logfile' = %s\n", handle->logfile);
|
2007-08-21 21:28:05 -04:00
|
|
|
return(0);
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_usesyslog(unsigned short usesyslog)
|
2007-01-23 22:02:53 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->usesyslog = usesyslog;
|
2007-01-23 22:02:53 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-06-05 17:34:33 -04:00
|
|
|
void SYMEXPORT alpm_option_add_noupgrade(const char *pkg)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->noupgrade = alpm_list_add(handle->noupgrade, strdup(pkg));
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-01-23 22:02:53 -05:00
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_noupgrades(alpm_list_t *noupgrade)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
if(handle->noupgrade) FREELIST(handle->noupgrade);
|
|
|
|
if(noupgrade) handle->noupgrade = noupgrade;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-06-05 17:34:33 -04:00
|
|
|
void SYMEXPORT alpm_option_add_noextract(const char *pkg)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->noextract = alpm_list_add(handle->noextract, strdup(pkg));
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-06-05 17:34:33 -04:00
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_noextracts(alpm_list_t *noextract)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
if(handle->noextract) FREELIST(handle->noextract);
|
|
|
|
if(noextract) handle->noextract = noextract;
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-05 17:34:33 -04:00
|
|
|
void SYMEXPORT alpm_option_add_ignorepkg(const char *pkg)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->ignorepkg = alpm_list_add(handle->ignorepkg, strdup(pkg));
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
void alpm_option_set_ignorepkgs(alpm_list_t *ignorepkgs)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
if(handle->ignorepkg) FREELIST(handle->ignorepkg);
|
|
|
|
if(ignorepkgs) handle->ignorepkg = ignorepkgs;
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-06-05 17:34:33 -04:00
|
|
|
void SYMEXPORT alpm_option_add_holdpkg(const char *pkg)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->holdpkg = alpm_list_add(handle->holdpkg, strdup(pkg));
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_holdpkgs(alpm_list_t *holdpkgs)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
if(handle->holdpkg) FREELIST(handle->holdpkg);
|
|
|
|
if(holdpkgs) handle->holdpkg = holdpkgs;
|
|
|
|
}
|
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_upgradedelay(time_t delay)
|
2007-01-23 22:02:53 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->upgradedelay = delay;
|
2007-01-23 22:02:53 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_xfercommand(const char *cmd)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
if(handle->xfercommand) FREE(handle->xfercommand);
|
|
|
|
if(cmd) handle->xfercommand = strdup(cmd);
|
|
|
|
}
|
|
|
|
|
2007-06-04 12:01:53 -04:00
|
|
|
void SYMEXPORT alpm_option_set_nopassiveftp(unsigned short nopasv)
|
2007-01-23 22:02:53 -05:00
|
|
|
{
|
2007-02-21 01:44:14 -05:00
|
|
|
handle->nopassiveftp = nopasv;
|
2007-01-23 22:02:53 -05:00
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-02-21 01:44:14 -05:00
|
|
|
/* vim: set ts=2 sw=2 noet: */
|