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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
/**
* utils.c - helper functions for pmount
*
* Author: Martin Pitt <martin.pitt@canonical.com>
* (c) 2004 Canonical Ltd.
*
* This software is distributed under the terms and conditions of the
* GNU General Public License. See file GPL for the full text of the license.
*/
#include "utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <libintl.h>
/* File name used to tag directories created by pmount */
#define CREATED_DIR_STAMP ".created_by_pmount"
int enable_debug = 0;
int
debug( const char* format, ... ) {
va_list va;
int result;
if( !enable_debug )
return 0;
va_start( va, format );
result = vprintf( format, va );
va_end( va );
return result;
}
char*
strreplace( const char* s, char from, char to )
{
char* result = strdup( s );
if( !result ) {
fprintf( stderr, _("Error: out of memory\n") );
exit( 100 );
}
char* i;
for( i = result; *i; ++i )
if( *i == from )
*i = to;
return result;
}
int
read_number_colon_number( const char* file, unsigned char* first, unsigned char* second )
{
FILE* f;
char buf[100];
int bufsize;
unsigned int n1, n2;
/* read a chunk from the file that is big enough to hold any two numbers */
f = fopen( file, "r" );
if( !f )
return -1;
bufsize = fread( buf, 1, sizeof(buf)-1, f );
fclose( f );
buf[bufsize] = 0;
if( sscanf( buf, "%u:%u", &n1, &n2 ) != 2 )
return -1;
if( n1 > 255 || n2 > 255 )
return -1;
*first = (unsigned char) n1;
*second = (unsigned char) n2;
return 0;
}
int
assert_dir( const char* dir, int create_stamp )
{
int result;
struct stat st;
int stampfile;
char stampfname[PATH_MAX];
if( stat( dir, &st ) ) {
/* does not exist, create as root:root */
get_root();
get_groot();
result = mkdir( dir, 0755 );
drop_groot();
drop_root();
if( result ) {
perror( _("Error: could not create directory") );
return -1;
}
if( create_stamp ) {
/* create stamp file to indicate that the directory should be removed
* again at unmounting */
snprintf( stampfname, sizeof( stampfname ), "%s/%s", dir, CREATED_DIR_STAMP );
get_root();
get_groot();
stampfile = open( stampfname, O_CREAT|O_WRONLY|O_EXCL, 0600 );
drop_groot();
drop_root();
if( stampfile < 0 ) {
perror( _("Error: could not create stamp file in directory") );
return -1;
}
close( stampfile );
}
} else {
/* exists, check that it is a directory */
if( !S_ISDIR( st.st_mode ) ) {
fprintf( stderr, _("Error: %s is not a directory\n"), dir );
return -1;
}
}
return 0;
}
int
assert_emptydir( const char* dirname )
{
DIR* dir;
struct dirent* dirent;
/* we might need root for reading the dir */
get_root();
dir = opendir( dirname );
drop_root();
if( !dir ) {
perror( _("Error: could not open directory") );
return -1;
}
while ( ( dirent = readdir( dir ) ) ) {
if( strcmp( dirent->d_name, "." ) &&
strcmp( dirent->d_name, ".." ) &&
strcmp( dirent->d_name, CREATED_DIR_STAMP ) ) {
closedir( dir );
fprintf( stderr, _("Error: directory %s is not empty\n"), dirname );
return -1;
}
}
closedir( dir );
return 0;
}
int
is_dir( const char* path )
{
struct stat st;
if( stat( path, &st ) )
return 0;
return S_ISDIR( st.st_mode );
}
int
remove_pmount_mntpt( const char *path )
{
char stampfile[PATH_MAX];
int result = 0;
result = snprintf( stampfile, sizeof( stampfile ), "%s/%s", path, CREATED_DIR_STAMP );
if( result >= (int) sizeof( stampfile ) )
return -1;
get_root();
if( !unlink( stampfile ) )
result = rmdir( path );
drop_root();
return result;
}
unsigned
parse_unsigned( const char* s, int exitcode )
{
char* endptr;
long int result;
/* return 0 on NULL or empty strings */
if( !s || !*s )
return 0;
errno = 0;
result = strtol( s, &endptr, 0 );
if( *endptr == 0 && errno == 0 && result > 0 )
return (unsigned) result;
fprintf( stderr, _("Error: '%s' is not a valid number\n"), s );
exit( exitcode );
}
int
pid_exists( unsigned pid )
{
int result;
get_root();
result = kill( pid, 0 );
drop_root();
return (result == 0) ? 1 : 0;
}
int
is_word_str( const char* s )
{
const char* i;
/* NULL or empty? */
if( !s || !*s )
return 0;
for( i = s; *i; ++i ) {
if( ( *i >= 'a' && *i <= 'z' ) ||
( *i >= 'A' && *i <= 'Z' ) ||
( *i >= '0' && *i <= '9' ) ||
( *i == '-' ) ||
( *i == '_' ) )
continue;
return 0;
}
return 1;
}
void
get_root()
{
if( setreuid( -1, 0 ) ) {
perror( _("Internal error: could not change to effective uid root") );
exit( 100 );
}
}
void
drop_root()
{
if( setreuid( -1, getuid() ) ) {
perror( _("Internal error: could not change effective user uid to real user id") );
exit( 100 );
}
}
void
get_groot()
{
if( setregid( -1, 0 ) ) {
perror( _("Internal error: could not change to effective gid root") );
exit( 100 );
}
}
void
drop_groot()
{
if( setregid( -1, getgid() ) ) {
perror( _("Internal error: could not change effective group id to real group id") );
exit( 100 );
}
}
|