2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* backup.c
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2011-01-05 23:45:15 -05:00
|
|
|
* Copyright (c) 2006-2011 Pacman Development Team <pacman-dev@archlinux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Judd Vinet <jvinet@zeroflux.org>
|
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
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
|
2007-12-10 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
/* libalpm */
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "backup.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
#include "alpm_list.h"
|
|
|
|
#include "log.h"
|
2006-10-31 01:39:59 -05:00
|
|
|
#include "util.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-12-04 18:28:36 -05:00
|
|
|
/* split a backup string "file\thash" into two strings : file and hash */
|
2009-10-11 15:02:20 -04:00
|
|
|
static int backup_split(const char *string, char **file, char **hash)
|
2007-12-04 18:28:36 -05:00
|
|
|
{
|
|
|
|
char *str = strdup(string);
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
/* tab delimiter */
|
|
|
|
ptr = strchr(str, '\t');
|
|
|
|
if(ptr == NULL) {
|
|
|
|
if(file) {
|
|
|
|
*file = str;
|
2008-03-23 16:28:48 -04:00
|
|
|
} else {
|
|
|
|
/* don't need our dup as the fname wasn't requested, so free it */
|
|
|
|
FREE(str);
|
2007-12-04 18:28:36 -05:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-12-04 18:28:36 -05:00
|
|
|
}
|
|
|
|
*ptr = '\0';
|
|
|
|
ptr++;
|
|
|
|
/* now str points to the filename and ptr points to the hash */
|
|
|
|
if(file) {
|
|
|
|
*file = strdup(str);
|
|
|
|
}
|
|
|
|
if(hash) {
|
|
|
|
*hash = strdup(ptr);
|
|
|
|
}
|
|
|
|
FREE(str);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-12-04 18:28:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
char *_alpm_backup_file(const char *string)
|
|
|
|
{
|
|
|
|
char *file = NULL;
|
2009-10-11 15:02:20 -04:00
|
|
|
backup_split(string, &file, NULL);
|
2011-03-20 20:45:57 -04:00
|
|
|
return file;
|
2007-12-04 18:28:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
char *_alpm_backup_hash(const char *string)
|
|
|
|
{
|
|
|
|
char *hash = NULL;
|
2009-10-11 15:02:20 -04:00
|
|
|
backup_split(string, NULL, &hash);
|
2011-03-20 20:45:57 -04:00
|
|
|
return hash;
|
2007-12-04 18:28:36 -05:00
|
|
|
}
|
|
|
|
|
2005-05-04 15:52:54 -04:00
|
|
|
/* Look for a filename in a pmpkg_t.backup list. If we find it,
|
2007-07-25 17:35:29 -04:00
|
|
|
* then we return the md5 hash (parsed from the same line)
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
2007-06-05 17:34:33 -04:00
|
|
|
char *_alpm_needbackup(const char *file, const alpm_list_t *backup)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-06-05 17:34:33 -04:00
|
|
|
const alpm_list_t *lp;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
if(file == NULL || backup == NULL) {
|
2011-03-20 20:45:57 -04:00
|
|
|
return NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-12-04 18:28:36 -05:00
|
|
|
/* run through the backup list and parse out the hash for our file */
|
2005-03-14 20:51:43 -05:00
|
|
|
for(lp = backup; lp; lp = lp->next) {
|
2007-12-04 18:28:36 -05:00
|
|
|
char *filename = NULL;
|
|
|
|
char *hash = NULL;
|
2007-11-16 21:18:45 -05:00
|
|
|
|
2007-12-04 18:28:36 -05:00
|
|
|
/* no hash found */
|
2009-10-11 15:02:20 -04:00
|
|
|
if(!backup_split((char *)lp->data, &filename, &hash)) {
|
2007-12-04 18:28:36 -05:00
|
|
|
FREE(filename);
|
2005-03-14 20:51:43 -05:00
|
|
|
continue;
|
|
|
|
}
|
2007-12-04 18:28:36 -05:00
|
|
|
if(strcmp(file, filename) == 0) {
|
|
|
|
FREE(filename);
|
2011-03-20 20:45:57 -04:00
|
|
|
return hash;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-12-04 18:28:36 -05:00
|
|
|
FREE(filename);
|
|
|
|
FREE(hash);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|