vote up 1 vote down star
1

Let me explain what I'm trying to realize:

I have a encrypted tar file. I can decrypt it in memory, but obviously I can't write the decrypted data back to hard disk as a real file. The decrypted data is structured as a char* buffer in memory; how can I untar it in memory?

I can't find answer with libtar library. I also tried to untar it with execlp("tar", "tar", "-xvO", (void*)0). But it didn't work as I thought.

Anyone can give me a hint of the best solution? Thanks!

flag

A easier way would perhaps be to change id to a special user, write a temp file, read it back in, delete it, and then change back to the normal user? – gnud Oct 12 at 10:00
Only a simple question: Why to say "C Programming" in the title, because the tag says this to all? – Nathan Campos Oct 12 at 10:45
gnud, I think create special user in every target machine is not feasible. Campos, this question is tagged as "c" and "tar", sorry, as I am newbie here, I don't get your point. I'll correct it if I'm wrong. – solotim Oct 13 at 2:39
1  
Note that your 'execlp()' call should end with a '(char *)0' argument marking the end of the list of arguments. Also, you would probably need to specify "-xvf" and "-" as arguments so that tar would read its standard input. Then you'd need to arrange a pipe to connect your application to the input of tar. Then you'd write the buffer full of decrypted tar file to the pipe. – Jonathan Leffler Oct 13 at 4:50
Given that the tar file is now decrypted, why can't you afford to write the decrypted file to disk? The contents are about to be extracted onto disk - so the contents of the tar file are not really secret any more. You can give the file you create restrictive permissions. – Jonathan Leffler Oct 13 at 4:51
show 1 more comment

4 Answers

vote up 2 vote down check

I made an example, how to read file contents from an in-memory tar. The is_file_in_tar() function returns the length and the starting position of the named file if it is stored in the tar:

#include <stdio.h> 
#include <fcntl.h> 
#include <string.h> 
#include <sys/mman.h> 

struct tar {
  char name[100];   char _unused[24];
  char size[12];    char _padding[376];
} *tar;

int is_file_in_tar( struct tar *tar, char *name, char **start, int *length ){
  for( ; tar->name[0]; tar+=1+(*length+511)/512 ){
    sscanf( tar->size, "%o", length);
    if( !strcmp(tar->name,name) ){ *start = (char*)(tar+1); return 1; }
  }
  return 0;
}

int main(){
  int fd=open( "libtar-1.2.11.tar", O_RDONLY );
  tar=mmap(NULL, 808960, PROT_READ, MAP_PRIVATE, fd, 0);

  char *start; int length; char name[]="libtar-1.2.11/TODO";
  if( is_file_in_tar(tar,name,&start,&length) ) printf("%.*s",length,start);
}
link|flag
This is great too. So I can access the data in tar directly by pointer. But, how if the file is tar.gz? – solotim Oct 13 at 2:13
1  
zlib lets you open a gzip'ed file transparently. It even works the same on files that aren't gzip'ed – Martin Beckett Oct 13 at 4:44
vote up 4 vote down

I suspect that libtar is the answer.

Using libtar, you can specify your own functions for opening/closing, reading and writing. From the manpage:

int tar_open(TAR **t, char *pathname, tartype_t *type, int oflags,
             int mode, int options);

The tar_open() function opens a tar archive file corresponding to the filename named by the pathname argument. The oflags argument must be either O_RDONLY or O_WRONLY.

The type argument specifies the access methods for the given file type. The tartype_t structure has members named openfunc(), closefunc(), readfunc() and writefunc(), which are pointers to the functions for opening, closing, reading, and writing the file, respectively. If type is NULL, the file type defaults to a normal file, and the standard open(), close(), read(), and write() functions are used.

link|flag
as tar_open function read char* pathname: int tar_open(TAR **t, char *pathname, tartype_t *type, int oflags, int mode, int options); the pathname must be some real file, right? – solotim Oct 12 at 9:57
1  
See my edit - you can use your own file-access functions, which could just work on memory. – gnud Oct 12 at 9:59
the openfunc must return a fildes, I can't figure out how to get a fildes from a buffer. I have tried to use fileno(fmemopen(...)), but it just return -1. I'm frustrated. – solotim Oct 13 at 6:48
vote up 0 vote down

Just untar to in-memory tmpfs using a normal untar operation.

link|flag
I think it's unsafe since tmpfs can be accessed by any other process. right? – solotim Oct 12 at 10:06
Depends on user permissions. Hence my suggestion to use a 'special' user for writing out the temporary file. – gnud Oct 12 at 10:10
If root wants to read your data, you're screwed either way. – gnud Oct 12 at 10:11
Root can always dump the in memory contents of your process – Martin Beckett Oct 13 at 4:45
vote up 2 vote down

You can execute tar utility redirected to stdout. (tar --to-stdout). You should run it using forkpty() or popen() in order to read the output.

link|flag
I'v tried to use "tar -xvO", it read from stdin and write to stdout. In my program, I must use two pipes, one: tardata->stdin, two: untarreddata<-stdout. The difficult point is that, when I put tardata to stdin pipe, since there are some '\0' in the raw tardata, the tar command can't recognize a complete tar from stdin. Do you have any idea about this? thanks – solotim Oct 13 at 2:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.