untgz.c 12.7 KB
Newer Older
M
Mark Adler 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * untgz.c -- Display contents and/or extract file from
 * a gzip'd TAR file
 * written by "Pedro A. Aranda Guti\irrez" <paag@tid.es>
 * adaptation to Unix by Jean-loup Gailly <jloup@gzip.org>
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <fcntl.h>
#ifdef unix
# include <unistd.h>
#else
# include <direct.h>
# include <io.h>
#endif

#include "zlib.h"

M
Mark Adler 已提交
23
#ifdef WIN32
M
Mark Adler 已提交
24
#include <windows.h>
M
Mark Adler 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#  ifndef F_OK
#    define F_OK (0)
#  endif
#  ifdef _MSC_VER
#    define mkdir(dirname,mode) _mkdir(dirname)
#    define strdup(str)         _strdup(str)
#    define unlink(fn)          _unlink(fn)
#    define access(path,mode)   _access(path,mode)
#  else
#    define mkdir(dirname,mode) _mkdir(dirname)
#  endif
#else
#  include <utime.h>
#endif


M
Mark Adler 已提交
41 42
/* Values used in typeflag field.  */

M
Mark Adler 已提交
43 44 45 46 47 48 49 50 51
#define REGTYPE  '0'            /* regular file */
#define AREGTYPE '\0'           /* regular file */
#define LNKTYPE  '1'            /* link */
#define SYMTYPE  '2'            /* reserved */
#define CHRTYPE  '3'            /* character special */
#define BLKTYPE  '4'            /* block special */
#define DIRTYPE  '5'            /* directory */
#define FIFOTYPE '6'            /* FIFO special */
#define CONTTYPE '7'            /* reserved */
M
Mark Adler 已提交
52 53 54 55

#define BLOCKSIZE 512

struct tar_header
M
Mark Adler 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
{                               /* byte offset */
  char name[100];               /*   0 */
  char mode[8];                 /* 100 */
  char uid[8];                  /* 108 */
  char gid[8];                  /* 116 */
  char size[12];                /* 124 */
  char mtime[12];               /* 136 */
  char chksum[8];               /* 148 */
  char typeflag;                /* 156 */
  char linkname[100];           /* 157 */
  char magic[6];                /* 257 */
  char version[2];              /* 263 */
  char uname[32];               /* 265 */
  char gname[32];               /* 297 */
  char devmajor[8];             /* 329 */
  char devminor[8];             /* 337 */
  char prefix[155];             /* 345 */
                                /* 500 */
M
Mark Adler 已提交
74 75 76 77 78 79 80 81 82
};

union tar_buffer {
  char               buffer[BLOCKSIZE];
  struct tar_header  header;
};

enum { TGZ_EXTRACT = 0, TGZ_LIST };

M
Mark Adler 已提交
83 84
static char *TGZfname   OF((const char *));
void TGZnotfound        OF((const char *));
M
Mark Adler 已提交
85

M
Mark Adler 已提交
86 87 88 89
int getoct              OF((char *, int));
char *strtime           OF((time_t *));
int setftime            OF((char *, time_t));
int ExprMatch           OF((char *, char *));
M
Mark Adler 已提交
90

M
Mark Adler 已提交
91 92
int makedir             OF((char *));
int matchname           OF((int, int, char **, char *));
M
Mark Adler 已提交
93

M
Mark Adler 已提交
94 95
void error              OF((const char *));
int  tar                OF((gzFile, int, int, int, char **));
M
Mark Adler 已提交
96

M
Mark Adler 已提交
97 98
void help               OF((int));
int main                OF((int, char **));
M
Mark Adler 已提交
99 100 101 102 103

char *prog;

/* This will give a benign warning */

M
Mark Adler 已提交
104
static char *TGZsuffix[] = { "\0", ".tar", ".tar.gz", ".taz", ".tgz", NULL };
M
Mark Adler 已提交
105 106 107 108

/* Return the real name of the TGZ archive */
/* or NULL if it does not exist. */

M
Mark Adler 已提交
109
static char *TGZfname (const char *fname)
M
Mark Adler 已提交
110 111 112
{
  static char buffer[1024];
  int origlen,i;
M
Mark Adler 已提交
113

M
Mark Adler 已提交
114 115 116
  strcpy(buffer,fname);
  origlen = strlen(buffer);

M
Mark Adler 已提交
117
  for (i=0; TGZsuffix[i]; i++)
M
Mark Adler 已提交
118
    {
M
Mark Adler 已提交
119
       strcpy(buffer+origlen,TGZsuffix[i]);
M
Mark Adler 已提交
120 121 122 123 124 125 126 127
       if (access(buffer,F_OK) == 0)
         return buffer;
    }
  return NULL;
}

/* error message for the filename */

M
Mark Adler 已提交
128
void TGZnotfound (const char *fname)
M
Mark Adler 已提交
129 130 131 132
{
  int i;

  fprintf(stderr,"%s : couldn't find ",prog);
M
Mark Adler 已提交
133 134
  for (i=0;TGZsuffix[i];i++)
    fprintf(stderr,(TGZsuffix[i+1]) ? "%s%s, " : "or %s%s\n",
M
Mark Adler 已提交
135
            fname,
M
Mark Adler 已提交
136
            TGZsuffix[i]);
M
Mark Adler 已提交
137 138 139 140 141 142
  exit(1);
}


/* help functions */

M
Mark Adler 已提交
143
int getoct (char *p,int width)
M
Mark Adler 已提交
144 145 146
{
  int result = 0;
  char c;
M
Mark Adler 已提交
147

M
Mark Adler 已提交
148 149 150 151
  while (width --)
    {
      c = *p++;
      if (c == ' ')
M
Mark Adler 已提交
152
        continue;
M
Mark Adler 已提交
153
      if (c == 0)
M
Mark Adler 已提交
154
        break;
M
Mark Adler 已提交
155 156 157 158 159 160 161 162 163 164 165 166
      result = result * 8 + (c - '0');
    }
  return result;
}

char *strtime (time_t *t)
{
  struct tm   *local;
  static char result[32];

  local = localtime(t);
  sprintf(result,"%2d/%02d/%4d %02d:%02d:%02d",
M
Mark Adler 已提交
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
          local->tm_mday, local->tm_mon+1, local->tm_year+1900,
          local->tm_hour, local->tm_min,   local->tm_sec);
  return result;
}

int setftime (char *fname,time_t ftime)
{
#ifdef WIN32
  SYSTEMTIME st;
  FILETIME locft, modft;
  struct tm *loctm;
  HANDLE hFile;
  int result;

  loctm = localtime(&ftime);
  if (loctm == NULL)
    return -1;

  st.wYear         = (WORD)loctm->tm_year + 1900;
  st.wMonth        = (WORD)loctm->tm_mon + 1;
  st.wDayOfWeek    = (WORD)loctm->tm_wday;
  st.wDay          = (WORD)loctm->tm_mday;
  st.wHour         = (WORD)loctm->tm_hour;
  st.wMinute       = (WORD)loctm->tm_min;
  st.wSecond       = (WORD)loctm->tm_sec;
  st.wMilliseconds = 0;
  if (!SystemTimeToFileTime(&st, &locft) ||
      !LocalFileTimeToFileTime(&locft, &modft))
    return -1;

  hFile = CreateFile(fname, GENERIC_READ | GENERIC_WRITE,
                     0, NULL, OPEN_EXISTING, 0, 0);
  if (hFile == INVALID_HANDLE_VALUE)
    return -1;
  result = SetFileTime(hFile, NULL, NULL, &modft) ? 0 : -1;
  CloseHandle(hFile);
M
Mark Adler 已提交
203
  return result;
M
Mark Adler 已提交
204 205 206 207 208 209
#else
  struct utimbuf settime;

  settime.actime = settime.modtime = ftime;
  return utime(fname,&settime);
#endif
M
Mark Adler 已提交
210 211 212 213 214 215 216
}


/* regular expression matching */

#define ISSPECIAL(c) (((c) == '*') || ((c) == '/'))

M
Mark Adler 已提交
217
int ExprMatch (char *string,char *expr)
M
Mark Adler 已提交
218 219 220 221
{
  while (1)
    {
      if (ISSPECIAL(*expr))
M
Mark Adler 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
        {
          if (*expr == '/')
            {
              if (*string != '\\' && *string != '/')
                return 0;
              string ++; expr++;
            }
          else if (*expr == '*')
            {
              if (*expr ++ == 0)
                return 1;
              while (*++string != *expr)
                if (*string == 0)
                  return 0;
            }
        }
M
Mark Adler 已提交
238
      else
M
Mark Adler 已提交
239 240 241 242 243 244 245
        {
          if (*string != *expr)
            return 0;
          if (*expr++ == 0)
            return 1;
          string++;
        }
M
Mark Adler 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
    }
}

/* recursive make directory */
/* abort if you get an ENOENT errno somewhere in the middle */
/* e.g. ignore error "mkdir on existing directory" */
/* */
/* return 1 if OK */
/*        0 on error */

int makedir (char *newdir)
{
  char *buffer = strdup(newdir);
  char *p;
  int  len = strlen(buffer);
M
Mark Adler 已提交
261

M
Mark Adler 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
  if (len <= 0) {
    free(buffer);
    return 0;
  }
  if (buffer[len-1] == '/') {
    buffer[len-1] = '\0';
  }
  if (mkdir(buffer, 0775) == 0)
    {
      free(buffer);
      return 1;
    }

  p = buffer+1;
  while (1)
    {
      char hold;
M
Mark Adler 已提交
279

M
Mark Adler 已提交
280
      while(*p && *p != '\\' && *p != '/')
M
Mark Adler 已提交
281
        p++;
M
Mark Adler 已提交
282 283 284
      hold = *p;
      *p = 0;
      if ((mkdir(buffer, 0775) == -1) && (errno == ENOENT))
M
Mark Adler 已提交
285 286 287 288 289
        {
          fprintf(stderr,"%s: couldn't create directory %s\n",prog,buffer);
          free(buffer);
          return 0;
        }
M
Mark Adler 已提交
290
      if (hold == 0)
M
Mark Adler 已提交
291
        break;
M
Mark Adler 已提交
292 293 294 295 296 297 298 299
      *p++ = hold;
    }
  free(buffer);
  return 1;
}

int matchname (int arg,int argc,char **argv,char *fname)
{
M
Mark Adler 已提交
300
  if (arg == argc)              /* no arguments given (untgz tgzarchive) */
M
Mark Adler 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
    return 1;

  while (arg < argc)
    if (ExprMatch(fname,argv[arg++]))
      return 1;

  return 0; /* ignore this for the moment being */
}


/* Tar file list or extract */

int tar (gzFile in,int action,int arg,int argc,char **argv)
{
  union  tar_buffer buffer;
  int    len;
  int    err;
  int    getheader = 1;
  int    remaining = 0;
  FILE   *outfile = NULL;
  char   fname[BLOCKSIZE];
  time_t tartime;
M
Mark Adler 已提交
323

M
Mark Adler 已提交
324 325
  if (action == TGZ_LIST)
    printf("     day      time     size                       file\n"
M
Mark Adler 已提交
326
           " ---------- -------- --------- -------------------------------------\n");
M
Mark Adler 已提交
327 328 329 330
  while (1)
    {
      len = gzread(in, &buffer, BLOCKSIZE);
      if (len < 0)
M
Mark Adler 已提交
331
        error (gzerror(in, &err));
M
Mark Adler 已提交
332 333 334 335 336
      /*
       * Always expect complete blocks to process
       * the tar information.
       */
      if (len != BLOCKSIZE)
M
Mark Adler 已提交
337 338
        error("gzread: incomplete block read");

M
Mark Adler 已提交
339 340 341 342
      /*
       * If we have to get a tar header
       */
      if (getheader == 1)
M
Mark Adler 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
        {
          /*
           * if we met the end of the tar
           * or the end-of-tar block,
           * we are done
           */
          if ((len == 0)  || (buffer.header.name[0]== 0)) break;

          tartime = (time_t)getoct(buffer.header.mtime,12);
          strcpy(fname,buffer.header.name);

          switch (buffer.header.typeflag)
            {
            case DIRTYPE:
              if (action == TGZ_LIST)
                printf(" %s     <dir> %s\n",strtime(&tartime),fname);
              if (action == TGZ_EXTRACT)
                makedir(fname);
              break;
            case REGTYPE:
            case AREGTYPE:
              remaining = getoct(buffer.header.size,12);
              if (action == TGZ_LIST)
                printf(" %s %9d %s\n",strtime(&tartime),remaining,fname);
              if (action == TGZ_EXTRACT)
                {
                  if ((remaining) && (matchname(arg,argc,argv,fname)))
                    {
                      outfile = fopen(fname,"wb");
                      if (outfile == NULL) {
                        /* try creating directory */
                        char *p = strrchr(fname, '/');
                        if (p != NULL) {
                          *p = '\0';
                          makedir(fname);
                          *p = '/';
                          outfile = fopen(fname,"wb");
                        }
                      }
                      fprintf(stderr,
                              "%s %s\n",
                              (outfile) ? "Extracting" : "Couldn't create",
                              fname);
                    }
                  else
                    outfile = NULL;
                }
              /*
               * could have no contents
               */
              getheader = (remaining) ? 0 : 1;
              break;
            default:
              if (action == TGZ_LIST)
                printf(" %s     <---> %s\n",strtime(&tartime),fname);
              break;
            }
        }
M
Mark Adler 已提交
401
      else
M
Mark Adler 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
        {
          unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining;

          if ((action == TGZ_EXTRACT) && (outfile != NULL))
            {
              if (fwrite(&buffer,sizeof(char),bytes,outfile) != bytes)
                {
                  fprintf(stderr,"%s : error writing %s skipping...\n",prog,fname);
                  fclose(outfile);
                  unlink(fname);
                }
            }
          remaining -= bytes;
          if (remaining == 0)
            {
              getheader = 1;
              if ((action == TGZ_EXTRACT) && (outfile != NULL))
                {
                  fclose(outfile);
                  outfile = NULL;
                  setftime(fname,tartime);
                }
            }
        }
M
Mark Adler 已提交
426
    }
M
Mark Adler 已提交
427

M
Mark Adler 已提交
428 429 430 431 432 433 434 435 436 437 438 439
  if (gzclose(in) != Z_OK)
    error("failed gzclose");

  return 0;
}


/* =========================================================== */

void help(int exitval)
{
  fprintf(stderr,
M
Mark Adler 已提交
440 441 442 443 444 445
          "untgz version 0.1\n"
          " a sample application of zlib\n\n"
          "Usage : untgz file.tgz            to extract all files\n"
          "        untgz file.tgz fname ...  to extract selected files\n"
          "        untgz -l file.tgz         to list archive contents\n"
          "        untgz -h                  to display this help\n\n");
M
Mark Adler 已提交
446 447 448 449 450 451 452 453 454 455 456 457
  exit(exitval);
}

void error(const char *msg)
{
    fprintf(stderr, "%s: %s\n", prog, msg);
    exit(1);
}


/* ====================================================================== */

M
Mark Adler 已提交
458
int _CRT_glob = 0;      /* disable globbing of the arguments */
M
Mark Adler 已提交
459 460 461

int main(int argc,char **argv)
{
M
Mark Adler 已提交
462 463 464 465 466
    int         action = TGZ_EXTRACT;
    int         arg = 1;
    char        *TGZfile;
    gzFile      *f;

M
Mark Adler 已提交
467 468 469 470

    prog = strrchr(argv[0],'\\');
    if (prog == NULL)
      {
M
Mark Adler 已提交
471 472 473 474 475 476 477 478 479 480 481
        prog = strrchr(argv[0],'/');
        if (prog == NULL)
          {
            prog = strrchr(argv[0],':');
            if (prog == NULL)
              prog = argv[0];
            else
              prog++;
          }
        else
          prog++;
M
Mark Adler 已提交
482 483 484
      }
    else
      prog++;
M
Mark Adler 已提交
485

M
Mark Adler 已提交
486 487 488 489 490
    if (argc == 1)
      help(0);

    if (strcmp(argv[arg],"-l") == 0)
      {
M
Mark Adler 已提交
491 492 493
        action = TGZ_LIST;
        if (argc == ++arg)
          help(0);
M
Mark Adler 已提交
494 495 496
      }
    else if (strcmp(argv[arg],"-h") == 0)
      {
M
Mark Adler 已提交
497
        help(0);
M
Mark Adler 已提交
498 499 500
      }

    if ((TGZfile = TGZfname(argv[arg])) == NULL)
M
Mark Adler 已提交
501
      TGZnotfound(argv[arg]);
M
Mark Adler 已提交
502 503 504 505 506 507 508 509 510 511 512 513

    ++arg;
    if ((action == TGZ_LIST) && (arg != argc))
      help(1);

/*
 *  Process the TGZ file
 */
    switch(action)
      {
      case TGZ_LIST:
      case TGZ_EXTRACT:
M
Mark Adler 已提交
514 515 516 517 518 519 520 521 522
        f = gzopen(TGZfile,"rb");
        if (f == NULL)
          {
            fprintf(stderr,"%s: Couldn't gzopen %s\n",
                    prog,
                    TGZfile);
            return 1;
          }
        exit(tar(f, action, arg, argc, argv));
M
Mark Adler 已提交
523
      break;
M
Mark Adler 已提交
524

M
Mark Adler 已提交
525
      default:
M
Mark Adler 已提交
526 527
        error("Unknown option!");
        exit(1);
M
Mark Adler 已提交
528 529 530 531
      }

    return 0;
}