1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
/*
Copyright (C) (2004 - 2006) (Venkata Ramana Enaganti) <ramana@intraperson.com>
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* For prepairing arguments for backup proc.
%x characters have special meaning and
replaced with strftime and others specific to autodir.
*/
#include <stdio.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <limits.h>
#include "miscfuncs.h"
#include "msg.h"
#include "options.h"
#include "backup_argv.h"
#define ARG_STATIC 1
#define ARG_DYNAMIC 2
#define HOSTNAME_LEN 64
#define ARG_BUF_SIZE ((PATH_MAX)+256)
/*These structures for holding raw and
unexpanded backup program arguments.*/
typedef struct barg {
char *arg;
int type;
struct barg *next;
} Barg;
static struct{
int count;
Barg *end;
Barg *start;
} barg_list;
static char hostname[ HOSTNAME_LEN+1 ];
/* For adding to linked list 'at program startup'
each argument for backup proc
In this linked list args are not expanded
so that this can be used for every back proc.
*/
static void backarg_add( char *arg )
{
Barg *tmp;
tmp = (Barg *) malloc( sizeof(Barg) );
if( ! tmp )
msglog( MSG_FATAL, "backarg_add: malloc: " \
"could not allocate memory" );
tmp->arg = arg;
tmp->type = ( strchr( arg, '%' ) ) ? ARG_DYNAMIC : ARG_STATIC;
tmp->next = NULL;
if( barg_list.end )
{
barg_list.end->next = tmp;
barg_list.end = tmp;
}
else barg_list.start = barg_list.end = tmp;
barg_list.count++;
}
/* expand any '%x' in argv argument with
strftime and others specific to autodir
*/
static int backarg_expand( char *buf, const int len, const char *fmt,
const char *dname, const char *dpath,
const char *host, struct tm *tm )
{
int i, r = 1, strf_expand = 0;
int special = 0;
char b[ ARG_BUF_SIZE + 1 ], c;
Cary ca;
cary_init( &ca, b, sizeof(b) );
for( i = 0 ; ( c = fmt[ i ] ) && r ; i++ )
{
if( c == '%' && ! special )
{
special = 1;
continue;
}
if( special )
{
switch( c )
{
case 'L':
r = cary_add_str( &ca, dpath );
break;
case 'N':
r = cary_add_str( &ca, dname );
break;
case 'K':
r = cary_add_str( &ca, host );
break;
default:
cary_add( &ca, '%' );
r = cary_add( &ca, c );
/*need to be expanded further
with strftime?*/
strf_expand = 1;
}
special = 0;
}
else r = cary_add( &ca, c );
}
if( ! r ) return 0;
if( strf_expand )
return strftime( buf, len, b, tm ) ? 1 : 0;
else
{
string_n_copy( buf, b, len );
return 1;
}
}
/*
Expected to be called from
child process for prepaining argv vector
*/
int backup_argv_get( const char *name, const char *path, char ***argv )
{
char **av, arg_buf[ ARG_BUF_SIZE + 1 ];
int i, ret;
struct tm tm;
time_t ct;
Barg *arg;
ct = time( NULL );
if( ! localtime_r( &ct, &tm ) )
{
fprintf( stderr, "backarg_get_argv: localtime_r error\n" );
return 0;
}
av = (char **) malloc( sizeof(char *) * ( barg_list.count + 1) );
if( ! av )
{
fprintf( stderr, "backarg_get_argv: malloc: " \
"could not allocate memory\n" );
return 0;
}
arg = barg_list.start;
for( i = 0 ; i < barg_list.count ; i++ )
{
if( arg->type == ARG_STATIC )
av[ i ] = arg->arg;
else
{
ret = backarg_expand( arg_buf, sizeof(arg_buf),
arg->arg, name, path, hostname, &tm );
if( ! ret )
{
fprintf( stderr, "backarg_get_argv: " \
"could not expand back args\n");
return 0;
}
av[ i ] = strdup( arg_buf );
if( ! av[ i ] )
{
fprintf( stderr, "backarg_get_argv: strdup: " \
"could not allocate memory\n");
return 0;
}
}
arg = arg->next;
}
av[ barg_list.count ] = NULL;
*argv = av;
return 1;
}
/*before termination*/
static void backarg_clean( void )
{
Barg *bg, *tmp;
bg = barg_list.start;
while( bg )
{
tmp = bg;
bg = bg->next;
free( tmp );
}
}
/*initialization at startup*/
void backup_argv_init( char *bopt )
{
char *arg;
if( ! bopt ) return;
if( gethostname( hostname, sizeof(hostname) ) )
msglog( MSG_FATAL|LOG_ERRNO, "backup_argv_init: gethostname" );
barg_list.end = barg_list.start = NULL;
barg_list.count = 0;
arg = strtok( bopt, " \f\n\r\t\v" );
while( arg )
{
backarg_add( arg );
arg = strtok( NULL, " \f\n\r\t\v" );
}
if( atexit( backarg_clean ) )
msglog( MSG_FATAL, "backup_argv_init: could not register " \
"cleanup method" );
}
|