[go: up one dir, main page]

File: backup_fork.c

package info (click to toggle)
autodir 0.99.8-1
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 1,920 kB
  • ctags: 775
  • sloc: sh: 8,544; ansic: 7,297; xml: 431; makefile: 104
file content (225 lines) | stat: -rw-r--r-- 4,709 bytes parent folder | download | duplicates (8)
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
/*

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.

*/

#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "msg.h"
#include "backup_argv.h"
#include "miscfuncs.h"
#include "backup_fork.h"

/*default is to give low priority*/
#define DFLT_PRI		30

#define PRIORITY_MAX		1
#define PRIORITY_MIN		40

static int priority;

static void reset_signals( void )
{
        sigset_t set;
                                                                                
        sigfillset( &set );

        if( sigprocmask( SIG_UNBLOCK, &set, NULL ) )
		msglog( MSG_ERR | LOG_ERRNO, "reset_signals: sigprocmask" );
}

/* to be called only from forked child process*/
static void backup_exec( const char *name, const char *path )
{
	char **argv;

	reset_signals();
	setpriority( PRIO_PROCESS, 0, priority );

	if( ! backup_argv_get( name, path, &argv ) )
	{
		fprintf( stderr, "backup_exec: " \
			"could not make argument vector" );
		_exit( EXIT_FAILURE );
	}

	if( execv( argv[0], argv ) )
	{
		fprintf( stderr, "backup_exec: execv: %s", strerror( errno ) );
		_exit( EXIT_FAILURE );
	}
	_exit( EXIT_FAILURE );
}

pid_t backup_fork_new( const char *name, const char *path )
{
	pid_t pid;

	msglog( MSG_INFO, "starting backup for %s", name );
	pid = fork();
	if( pid < 0 )
	{
		msglog( MSG_NOTICE|LOG_ERRNO, "fork: could not start " \
				"backup for %s", name );
		return -1;
	}
	else if( pid == 0 ) 
	{
		if( setpgrp() == -1 )
			fprintf( stderr, "setpgrp: %s", strerror( errno ) );
		backup_exec( name, path ); 
	}
	else
		setpgid( pid, pid );
	return pid;
}

int backup_waitpid(pid_t pid, const char *name, int block)
{
	int status;
	int options = block ? 0 : WNOHANG;
	int wrv;

again:
	wrv = waitpid( pid, &status, options );
	if( wrv == -1 && errno == EINTR )
	{
		msglog( MSG_ERR, "waitpid: EINTR received. trying again...");
		sleep( 1 );
		goto again;
	}

	if( wrv == -1 )
	{
		msglog( MSG_ERR|LOG_ERRNO, "waitpid %ld for %s",
							(long) pid, name );
		return 1;
	}
 	else if( ! wrv ) 
	{
		return 0;
	}
	else if( wrv > 0 )
	{
		if( WIFEXITED( status ) )
		{
			msglog( MSG_INFO,
				"backup process %ld for %s exited with %d",
				(long) pid, name, WEXITSTATUS( status ) );
		}
		else if( WIFSIGNALED( status ) )
		{
			msglog( MSG_INFO, "backup process %ld for %s " \
					"caught signal %d", (long) pid,
					name, WTERMSIG( status ) );
		}
		else
		{
			/*should not get here*/
			msglog( MSG_NOTICE,
				"backup process %ld for %s stopped",
					(long) pid, name );
			goto again;
		}
	}
	return 1;
}

void backup_soft_signal( pid_t pid )
{
	kill( - pid, SIGTERM );
}

void backup_fast_kill( pid_t pid, const char *name )
{
	kill( - pid, SIGKILL );
	backup_waitpid( pid, name, 1 );
}

void backup_kill( pid_t pid, const char *name )
{
	int i;

	if( backup_waitpid( pid, name, 0 ) != 0 )
	    return;

	/*send soft signal first and wait for some time*/
	kill( - pid, SIGTERM );
	sleep( 1 );
	if( backup_waitpid( pid, name, 0 ) != 0 )
	    return;

	for( i = 0; i < 3; i++ )
	{
		kill( - pid, SIGKILL );
		sleep( 1 );
		if( backup_waitpid( pid, name, 0 ) != 0 )
		    return;
	}
	backup_waitpid( pid, name, 1 );
}

/**********command line option handling funtions***************/

void backup_fork_option_pri( char ch, char *arg, int valid )
{
	int pri;

	if( ! valid ) priority = DFLT_PRI;

	else if( ! string_to_number( arg, &pri ) )
		msglog( MSG_FATAL, "invalid argument for -%c", ch );

	else if( pri < PRIORITY_MAX || pri > PRIORITY_MIN )
		msglog( MSG_FATAL, "invalid priority %d for -%c", pri, ch );

	else priority = pri - 21; /*change to -20 to +20 range*/
}

#ifdef TEST

char *autodir_name(void)
{
    return "test autodir";
}

int main(void)
{
	pid_t pid;

	msg_option_verbose('x', "", 1);
	msg_init();
	msg_console_on();
	backup_argv_init( strdup( "/home/devel/testautodir/backup" ) );

	while (1)
	{
		pid = backup_fork_new( "test", "/tmp" );
		if( pid > 0 )
		{
			backup_kill( pid, "test" );
		}
	}
}

#endif