- missing key(s) on keyring when verifying a signature is now an error.
[platform/upstream/rpm.git] / lib / fsm.c
1 /** \ingroup payload
2  * \file lib/fsm.c
3  * File state machine to handle a payload from a package.
4  */
5
6 #include "system.h"
7
8 #include "psm.h"
9 #include "rpmerr.h"
10 #include "debug.h"
11
12 /*@access FD_t @*/
13 /*@access FSMI_t @*/
14 /*@access FSM_t @*/
15
16 /*@access TFI_t @*/
17 /*@access transactionElement @*/
18 /*@access rpmTransactionSet @*/
19
20 #define alloca_strdup(_s)       strcpy(alloca(strlen(_s)+1), (_s))
21
22 /*@unchecked@*/
23 int _fsm_debug = 0;
24
25 /* XXX Failure to remove is not (yet) cause for failure. */
26 /*@-exportlocal -exportheadervar@*/
27 /*@unchecked@*/
28 int strict_erasures = 0;
29 /*@=exportlocal =exportheadervar@*/
30
31 rpmTransactionSet fsmGetTs(const FSM_t fsm) {
32     const FSMI_t iter = fsm->iter;
33     /*@-compdef -refcounttrans -retexpose -usereleased @*/
34     return (iter ? iter->ts : NULL);
35     /*@=compdef =refcounttrans =retexpose =usereleased @*/
36 }
37
38 TFI_t fsmGetFi(const FSM_t fsm)
39 {
40     const FSMI_t iter = fsm->iter;
41     /*@-compdef -refcounttrans -retexpose -usereleased @*/
42     return (iter ? iter->fi : NULL);
43     /*@=compdef =refcounttrans =retexpose =usereleased @*/
44 }
45
46 #define SUFFIX_RPMORIG  ".rpmorig"
47 #define SUFFIX_RPMSAVE  ".rpmsave"
48 #define SUFFIX_RPMNEW   ".rpmnew"
49
50 /** \ingroup payload
51  * Build path to file from file info, ornamented with subdir and suffix.
52  * @param fsm           file state machine data
53  * @param st            file stat info
54  * @param subdir        subdir to use (NULL disables)
55  * @param suffix        suffix to use (NULL disables)
56  * @retval              path to file
57  */
58 static /*@only@*//*@null@*/
59 const char * fsmFsPath(/*@special@*/ /*@null@*/ const FSM_t fsm,
60                 /*@null@*/ const struct stat * st,
61                 /*@null@*/ const char * subdir,
62                 /*@null@*/ const char * suffix)
63         /*@uses fsm->dirName, fsm->baseName */
64         /*@*/
65 {
66     const char * s = NULL;
67
68     if (fsm) {
69         int nb;
70         char * t;
71         nb = strlen(fsm->dirName) +
72             (st && !S_ISDIR(st->st_mode) ? (subdir ? strlen(subdir) : 0) : 0) +
73             (st && !S_ISDIR(st->st_mode) ? (suffix ? strlen(suffix) : 0) : 0) +
74             strlen(fsm->baseName) + 1;
75         s = t = xmalloc(nb);
76         t = stpcpy(t, fsm->dirName);
77         if (st && !S_ISDIR(st->st_mode))
78             if (subdir) t = stpcpy(t, subdir);
79         t = stpcpy(t, fsm->baseName);
80         if (st && !S_ISDIR(st->st_mode))
81             if (suffix) t = stpcpy(t, suffix);
82     }
83     return s;
84 }
85
86 /** \ingroup payload
87  * Destroy file info iterator.
88  * @param p             file info iterator
89  * @retval              NULL always
90  */
91 static /*@null@*/ void * mapFreeIterator(/*@only@*//*@null@*/ void * p)
92         /*@*/
93 {
94     FSMI_t iter = p;
95     if (iter) {
96         iter->ts = rpmtsUnlink(iter->ts, "mapIterator");
97         iter->fi = rpmfiUnlink(iter->fi, "mapIterator");
98     }
99     return _free(p);
100 }
101
102 /** \ingroup payload
103  * Create file info iterator.
104  * @param a             transaction set
105  * @param b             transaction element file info
106  * @return              file info iterator
107  */
108 static void *
109 mapInitIterator(rpmTransactionSet ts, TFI_t fi)
110         /*@modifies ts, fi @*/
111 {
112     FSMI_t iter = NULL;
113
114     iter = xcalloc(1, sizeof(*iter));
115     iter->ts = rpmtsLink(ts, "mapIterator");
116     iter->fi = rpmfiLink(fi, "mapIterator");
117     iter->reverse = (fi->te->type == TR_REMOVED && fi->action != FA_COPYOUT);
118     iter->i = (iter->reverse ? (fi->fc - 1) : 0);
119     iter->isave = iter->i;
120     return iter;
121 }
122
123 /** \ingroup payload
124  * Return next index into file info.
125  * @param a             file info iterator
126  * @return              next index, -1 on termination
127  */
128 static int mapNextIterator(/*@null@*/ void * a)
129         /*@*/
130 {
131     FSMI_t iter = a;
132     int i = -1;
133
134     if (iter) {
135         const TFI_t fi = iter->fi;
136         if (iter->reverse) {
137             if (iter->i >= 0)   i = iter->i--;
138         } else {
139             if (iter->i < fi->fc)       i = iter->i++;
140         }
141         iter->isave = i;
142     }
143     return i;
144 }
145
146 /** \ingroup payload
147  */
148 static int cpioStrCmp(const void * a, const void * b)
149         /*@*/
150 {
151     const char * afn = *(const char **)a;
152     const char * bfn = *(const char **)b;
153
154     /* Match rpm-4.0 payloads with ./ prefixes. */
155     if (afn[0] == '.' && afn[1] == '/') afn += 2;
156     if (bfn[0] == '.' && bfn[1] == '/') bfn += 2;
157
158     /* If either path is absolute, make it relative. */
159     if (afn[0] == '/')  afn += 1;
160     if (bfn[0] == '/')  bfn += 1;
161
162     return strcmp(afn, bfn);
163 }
164
165 /** \ingroup payload
166  * Locate archive path in file info.
167  * @param iter          file info iterator
168  * @param fsmPath       archive path
169  * @return              index into file info, -1 if archive path was not found
170  */
171 static int mapFind(/*@null@*/ FSMI_t iter, const char * fsmPath)
172         /*@modifies iter @*/
173 {
174     int ix = -1;
175
176     if (iter) {
177         const TFI_t fi = iter->fi;
178         if (fi && fi->fc > 0 && fi->apath && fsmPath && *fsmPath) {
179             const char ** p = NULL;
180
181             if (fi->apath != NULL)
182                 p = bsearch(&fsmPath, fi->apath, fi->fc, sizeof(fsmPath),
183                         cpioStrCmp);
184             if (p) {
185                 iter->i = p - fi->apath;
186                 ix = mapNextIterator(iter);
187             }
188         }
189     }
190     return ix;
191 }
192
193 /** \ingroup payload
194  * Directory name iterator.
195  */
196 typedef struct dnli_s {
197     TFI_t fi;
198 /*@only@*/ /*@null@*/ char * active;
199     int reverse;
200     int isave;
201     int i;
202 } * DNLI_t;
203
204 /** \ingroup payload
205  * Destroy directory name iterator.
206  * @param a             directory name iterator
207  * @retval              NULL always
208  */
209 static /*@null@*/ void * dnlFreeIterator(/*@only@*//*@null@*/ const void * a)
210         /*@modifies a @*/
211 {
212     if (a) {
213         DNLI_t dnli = (void *)a;
214         if (dnli->active) free(dnli->active);
215     }
216     return _free(a);
217 }
218
219 /** \ingroup payload
220  */
221 static inline int dnlCount(const DNLI_t dnli)
222         /*@*/
223 {
224     return (dnli ? dnli->fi->dc : 0);
225 }
226
227 /** \ingroup payload
228  */
229 static inline int dnlIndex(const DNLI_t dnli)
230         /*@*/
231 {
232     return (dnli ? dnli->isave : -1);
233 }
234
235 /** \ingroup payload
236  * Create directory name iterator.
237  * @param fsm           file state machine data
238  * @param reverse       traverse directory names in reverse order?
239  * @return              directory name iterator
240  */
241 /*@-usereleased@*/
242 static /*@only@*/ void * dnlInitIterator(/*@special@*/ const FSM_t fsm,
243                 int reverse)
244         /*@uses fsm->iter @*/ 
245         /*@*/
246 {
247     TFI_t fi = fsmGetFi(fsm);
248     DNLI_t dnli;
249     int i, j;
250
251     if (fi == NULL)
252         return NULL;
253     dnli = xcalloc(1, sizeof(*dnli));
254     dnli->fi = fi;
255     dnli->reverse = reverse;
256     /*@-branchstate@*/
257     dnli->i = (reverse ? fi->dc : 0);
258     /*@=branchstate@*/
259
260     if (fi->dc) {
261         dnli->active = xcalloc(fi->dc, sizeof(*dnli->active));
262
263         /* Identify parent directories not skipped. */
264         for (i = 0; i < fi->fc; i++)
265             if (!XFA_SKIPPING(fi->actions[i])) dnli->active[fi->dil[i]] = 1;
266
267         /* Exclude parent directories that are explicitly included. */
268         for (i = 0; i < fi->fc; i++) {
269             int dil, dnlen, bnlen;
270
271             if (!S_ISDIR(fi->fmodes[i]))
272                 continue;
273
274             dil = fi->dil[i];
275             dnlen = strlen(fi->dnl[dil]);
276             bnlen = strlen(fi->bnl[i]);
277
278             for (j = 0; j < fi->dc; j++) {
279                 const char * dnl;
280                 int jlen;
281
282                 if (!dnli->active[j] || j == dil)
283                     /*@innercontinue@*/ continue;
284                 dnl = fi->dnl[j];
285                 jlen = strlen(dnl);
286                 if (jlen != (dnlen+bnlen+1))
287                     /*@innercontinue@*/ continue;
288                 if (strncmp(dnl, fi->dnl[dil], dnlen))
289                     /*@innercontinue@*/ continue;
290                 if (strncmp(dnl+dnlen, fi->bnl[i], bnlen))
291                     /*@innercontinue@*/ continue;
292                 if (dnl[dnlen+bnlen] != '/' || dnl[dnlen+bnlen+1] != '\0')
293                     /*@innercontinue@*/ continue;
294                 /* This directory is included in the package. */
295                 dnli->active[j] = 0;
296                 /*@innerbreak@*/ break;
297             }
298         }
299
300         /* Print only once per package. */
301         if (!reverse) {
302             j = 0;
303             for (i = 0; i < fi->dc; i++) {
304                 if (!dnli->active[i]) continue;
305                 if (j == 0) {
306                     j = 1;
307                     rpmMessage(RPMMESS_DEBUG,
308         _("========== Directories not explictly included in package:\n"));
309                 }
310                 rpmMessage(RPMMESS_DEBUG, _("%10d %s\n"), i, fi->dnl[i]);
311             }
312             if (j)
313                 rpmMessage(RPMMESS_DEBUG, "==========\n");
314         }
315     }
316     return dnli;
317 }
318 /*@=usereleased@*/
319
320 /** \ingroup payload
321  * Return next directory name (from file info).
322  * @param dnli          directory name iterator
323  * @return              next directory name
324  */
325 static /*@observer@*/ const char * dnlNextIterator(/*@null@*/ DNLI_t dnli)
326         /*@modifies dnli @*/
327 {
328     const char * dn = NULL;
329
330     if (dnli) {
331         TFI_t fi = dnli->fi;
332         int i = -1;
333
334         if (dnli->active)
335         do {
336             i = (!dnli->reverse ? dnli->i++ : --dnli->i);
337         } while (i >= 0 && i < fi->dc && !dnli->active[i]);
338
339         if (i >= 0 && i < fi->dc)
340             dn = fi->dnl[i];
341         else
342             i = -1;
343         dnli->isave = i;
344     }
345     return dn;
346 }
347
348 /** \ingroup payload
349  * Save hard link in chain.
350  * @param fsm           file state machine data
351  * @return              Is chain only partially filled?
352  */
353 static int saveHardLink(/*@special@*/ /*@partial@*/ FSM_t fsm)
354         /*@uses fsm->links, fsm->ix, fsm->sb, fsm->goal, fsm->nsuffix @*/
355         /*@defines fsm->li @*/
356         /*@releases fsm->path @*/
357         /*@globals fileSystem@*/
358         /*@modifies fsm, fileSystem @*/
359 {
360     struct stat * st = &fsm->sb;
361     int rc = 0;
362     int ix = -1;
363     int j;
364
365     /* Find hard link set. */
366     /*@-branchstate@*/
367     for (fsm->li = fsm->links; fsm->li; fsm->li = fsm->li->next) {
368         if (fsm->li->sb.st_ino == st->st_ino && fsm->li->sb.st_dev == st->st_dev)
369             break;
370     }
371     /*@=branchstate@*/
372
373     /* New hard link encountered, add new link to set. */
374     /*@-branchstate@*/
375     if (fsm->li == NULL) {
376         fsm->li = xcalloc(1, sizeof(*fsm->li));
377         fsm->li->next = NULL;
378         fsm->li->sb = *st;      /* structure assignment */
379         fsm->li->nlink = st->st_nlink;
380         fsm->li->linkIndex = fsm->ix;
381         fsm->li->createdPath = -1;
382
383         fsm->li->filex = xcalloc(st->st_nlink, sizeof(fsm->li->filex[0]));
384         memset(fsm->li->filex, -1, (st->st_nlink * sizeof(fsm->li->filex[0])));
385         fsm->li->nsuffix = xcalloc(st->st_nlink, sizeof(*fsm->li->nsuffix));
386
387         if (fsm->goal == FSM_PKGBUILD)
388             fsm->li->linksLeft = st->st_nlink;
389         if (fsm->goal == FSM_PKGINSTALL)
390             fsm->li->linksLeft = 0;
391
392         /*@-kepttrans@*/
393         fsm->li->next = fsm->links;
394         /*@=kepttrans@*/
395         fsm->links = fsm->li;
396     }
397     /*@=branchstate@*/
398
399     if (fsm->goal == FSM_PKGBUILD) --fsm->li->linksLeft;
400     fsm->li->filex[fsm->li->linksLeft] = fsm->ix;
401     /*@-observertrans -dependenttrans@*/
402     fsm->li->nsuffix[fsm->li->linksLeft] = fsm->nsuffix;
403     /*@=observertrans =dependenttrans@*/
404     if (fsm->goal == FSM_PKGINSTALL) fsm->li->linksLeft++;
405
406     if (fsm->goal == FSM_PKGBUILD)
407         return (fsm->li->linksLeft > 0);
408
409     if (fsm->goal != FSM_PKGINSTALL)
410         return 0;
411
412     if (!(st->st_size || fsm->li->linksLeft == st->st_nlink))
413         return 1;
414
415     /* Here come the bits, time to choose a non-skipped file name. */
416     {   TFI_t fi = fsmGetFi(fsm);
417
418         for (j = fsm->li->linksLeft - 1; j >= 0; j--) {
419             ix = fsm->li->filex[j];
420             if (ix < 0 || XFA_SKIPPING(fi->actions[ix]))
421                 continue;
422             break;
423         }
424     }
425
426     /* Are all links skipped or not encountered yet? */
427     if (ix < 0 || j < 0)
428         return 1;       /* XXX W2DO? */
429
430     /* Save the non-skipped file name and map index. */
431     fsm->li->linkIndex = j;
432     fsm->path = _free(fsm->path);
433     fsm->ix = ix;
434     rc = fsmStage(fsm, FSM_MAP);
435     return rc;
436 }
437
438 /** \ingroup payload
439  * Destroy set of hard links.
440  * @param li            set of hard links
441  */
442 static /*@null@*/ void * freeHardLink(/*@only@*/ /*@null@*/ struct hardLink_s * li)
443         /*@modifies li @*/
444 {
445     if (li) {
446         li->nsuffix = _free(li->nsuffix);       /* XXX elements are shared */
447         li->filex = _free(li->filex);
448     }
449     return _free(li);
450 }
451
452 FSM_t newFSM(void)
453 {
454     FSM_t fsm = xcalloc(1, sizeof(*fsm));
455     return fsm;
456 }
457
458 FSM_t freeFSM(FSM_t fsm)
459 {
460     if (fsm) {
461         fsm->path = _free(fsm->path);
462         /*@-branchstate@*/
463         while ((fsm->li = fsm->links) != NULL) {
464             fsm->links = fsm->li->next;
465             fsm->li->next = NULL;
466             fsm->li = freeHardLink(fsm->li);
467         }
468         /*@=branchstate@*/
469         fsm->dnlx = _free(fsm->dnlx);
470         fsm->ldn = _free(fsm->ldn);
471         fsm->iter = mapFreeIterator(fsm->iter);
472     }
473     return _free(fsm);
474 }
475
476 int fsmSetup(FSM_t fsm, fileStage goal,
477                 const rpmTransactionSet ts, const TFI_t fi, FD_t cfd,
478                 unsigned int * archiveSize, const char ** failedFile)
479 {
480     size_t pos = 0;
481     int rc, ec = 0;
482
483     fsm->goal = goal;
484     if (cfd) {
485         /*@-type@*/ /* FIX: cast? */
486         fsm->cfd = fdLink(cfd, "persist (fsm)");
487         /*@=type@*/
488         pos = fdGetCpioPos(fsm->cfd);
489         fdSetCpioPos(fsm->cfd, 0);
490     }
491     fsm->iter = mapInitIterator(ts, fi);
492
493     if (fsm->goal == FSM_PKGINSTALL) {
494         if (ts && ts->notify) {
495             /*@-type@*/ /* FIX: cast? */
496             /*@-noeffectuncon @*/ /* FIX: check rc */
497             (void)ts->notify(fi->h, RPMCALLBACK_INST_START, 0, fi->archiveSize,
498                         rpmfiGetKey(fi), ts->notifyData);
499             /*@=noeffectuncon @*/
500             /*@=type@*/
501         }
502     }
503
504     /*@-assignexpose@*/
505     fsm->archiveSize = archiveSize;
506     if (fsm->archiveSize)
507         *fsm->archiveSize = 0;
508     fsm->failedFile = failedFile;
509     if (fsm->failedFile)
510         *fsm->failedFile = NULL;
511     /*@=assignexpose@*/
512
513     memset(fsm->sufbuf, 0, sizeof(fsm->sufbuf));
514     if (fsm->goal == FSM_PKGINSTALL) {
515         if (ts && ts->id > 0)
516             sprintf(fsm->sufbuf, ";%08x", (unsigned)ts->id);
517     }
518
519     ec = fsm->rc = 0;
520     rc = fsmStage(fsm, FSM_CREATE);
521     if (rc && !ec) ec = rc;
522
523     rc = fsmStage(fsm, fsm->goal);
524     if (rc && !ec) ec = rc;
525
526     if (fsm->archiveSize && ec == 0)
527         *fsm->archiveSize = (fdGetCpioPos(fsm->cfd) - pos);
528
529    return ec;
530 }
531
532 int fsmTeardown(FSM_t fsm)
533 {
534     int rc = fsm->rc;
535
536     if (!rc)
537         rc = fsmStage(fsm, FSM_DESTROY);
538
539     fsm->iter = mapFreeIterator(fsm->iter);
540     if (fsm->cfd) {
541         /*@-type@*/ /* FIX: cast? */
542         fsm->cfd = fdFree(fsm->cfd, "persist (fsm)");
543         /*@=type@*/
544         fsm->cfd = NULL;
545     }
546     fsm->failedFile = NULL;
547     return rc;
548 }
549
550 int fsmMapPath(FSM_t fsm)
551 {
552     TFI_t fi = fsmGetFi(fsm);   /* XXX const except for fstates */
553     int rc = 0;
554     int i;
555
556     fsm->osuffix = NULL;
557     fsm->nsuffix = NULL;
558     fsm->astriplen = 0;
559     fsm->action = FA_UNKNOWN;
560     fsm->mapFlags = 0;
561
562     i = fsm->ix;
563     if (fi && i >= 0 && i < fi->fc) {
564
565         fsm->astriplen = fi->astriplen;
566         fsm->action = (fi->actions ? fi->actions[i] : fi->action);
567         fsm->fflags = (fi->fflags ? fi->fflags[i] : fi->flags);
568         fsm->mapFlags = (fi->fmapflags ? fi->fmapflags[i] : fi->mapflags);
569
570         /* src rpms have simple base name in payload. */
571         fsm->dirName = fi->dnl[fi->dil[i]];
572         fsm->baseName = fi->bnl[i];
573
574         switch (fsm->action) {
575         case FA_SKIP:
576             break;
577         case FA_SKIPMULTILIB:   /* XXX RPMFILE_STATE_MULTILIB? */
578             break;
579         case FA_UNKNOWN:
580             break;
581
582         case FA_COPYOUT:
583             break;
584         case FA_COPYIN:
585         case FA_CREATE:
586 assert(fi->te->type == TR_ADDED);
587             break;
588
589         case FA_SKIPNSTATE:
590             if (fi->fstates && fi->te->type == TR_ADDED)
591                 fi->fstates[i] = RPMFILE_STATE_NOTINSTALLED;
592             break;
593
594         case FA_SKIPNETSHARED:
595             if (fi->fstates && fi->te->type == TR_ADDED)
596                 fi->fstates[i] = RPMFILE_STATE_NETSHARED;
597             break;
598
599         case FA_BACKUP:
600             if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
601             switch (fi->te->type) {
602             case TR_ADDED:
603                 fsm->osuffix = SUFFIX_RPMORIG;
604                 /*@innerbreak@*/ break;
605             case TR_REMOVED:
606                 fsm->osuffix = SUFFIX_RPMSAVE;
607                 /*@innerbreak@*/ break;
608             }
609             break;
610
611         case FA_ALTNAME:
612 assert(fi->te->type == TR_ADDED);
613             if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
614                 fsm->nsuffix = SUFFIX_RPMNEW;
615             break;
616
617         case FA_SAVE:
618 assert(fi->te->type == TR_ADDED);
619             if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
620                 fsm->osuffix = SUFFIX_RPMSAVE;
621             break;
622         case FA_ERASE:
623             assert(fi->te->type == TR_REMOVED);
624             /*
625              * XXX TODO: %ghost probably shouldn't be removed, but that changes
626              * legacy rpm behavior.
627              */
628             break;
629         default:
630             break;
631         }
632
633         if ((fsm->mapFlags & CPIO_MAP_PATH) || fsm->nsuffix) {
634             const struct stat * st = &fsm->sb;
635             fsm->path = _free(fsm->path);
636             fsm->path = fsmFsPath(fsm, st, fsm->subdir,
637                 (fsm->suffix ? fsm->suffix : fsm->nsuffix));
638         }
639     }
640     return rc;
641 }
642
643 int fsmMapAttrs(FSM_t fsm)
644 {
645     struct stat * st = &fsm->sb;
646     TFI_t fi = fsmGetFi(fsm);
647     int i = fsm->ix;
648
649     if (fi && i >= 0 && i < fi->fc) {
650         mode_t perms =
651                 (S_ISDIR(st->st_mode) ? fi->dperms : fi->fperms);
652         mode_t finalMode =
653                 (fi->fmodes ? fi->fmodes[i] : perms);
654         uid_t finalUid =
655                 (fi->fuids ? fi->fuids[i] : fi->uid); /* XXX chmod u-s */
656         gid_t finalGid =
657                 (fi->fgids ? fi->fgids[i] : fi->gid); /* XXX chmod g-s */
658         dev_t finalRdev =
659                 (fi->frdevs ? fi->frdevs[i] : 0);
660         int_32 finalMtime =
661                 (fi->fmtimes ? fi->fmtimes[i] : 0);
662
663         if (fsm->mapFlags & CPIO_MAP_MODE)
664             st->st_mode = (st->st_mode & S_IFMT) | (finalMode & ~S_IFMT);
665         if (fsm->mapFlags & CPIO_MAP_TYPE) {
666             st->st_mode = (st->st_mode & ~S_IFMT) | (finalMode & S_IFMT);
667             if ((S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode))
668             && st->st_nlink == 0)
669                 st->st_nlink = 1;
670             st->st_rdev = finalRdev;
671             st->st_mtime = finalMtime;
672         }
673         if (fsm->mapFlags & CPIO_MAP_UID)
674             st->st_uid = finalUid;
675         if (fsm->mapFlags & CPIO_MAP_GID)
676             st->st_gid = finalGid;
677
678         fsm->fmd5sum = (fi->fmd5s ? fi->fmd5s[i] : NULL);
679         fsm->md5sum = (fi->md5s ? (fi->md5s + (16 * i)) : NULL);
680
681     }
682     return 0;
683 }
684
685 /** \ingroup payload
686  * Create file from payload stream.
687  * @param fsm           file state machine data
688  * @return              0 on success
689  */
690 static int expandRegular(/*@special@*/ FSM_t fsm)
691         /*@uses fsm->sb @*/
692         /*@globals fileSystem@*/
693         /*@modifies fsm, fileSystem @*/
694 {
695     const struct stat * st = &fsm->sb;
696     int left = st->st_size;
697     int rc = 0;
698
699     rc = fsmStage(fsm, FSM_WOPEN);
700     if (rc)
701         goto exit;
702
703     /* XXX md5sum's will break on repackaging that includes modified files. */
704
705     if (st->st_size > 0 && (fsm->fmd5sum || fsm->md5sum))
706         fdInitDigest(fsm->wfd, PGPHASHALGO_MD5, 0);
707
708     while (left) {
709
710         fsm->wrlen = (left > fsm->wrsize ? fsm->wrsize : left);
711         rc = fsmStage(fsm, FSM_DREAD);
712         if (rc)
713             goto exit;
714
715         rc = fsmStage(fsm, FSM_WRITE);
716         if (rc)
717             goto exit;
718
719         left -= fsm->wrnb;
720
721         /* don't call this with fileSize == fileComplete */
722         if (!rc && left)
723             (void) fsmStage(fsm, FSM_NOTIFY);
724     }
725
726     if (st->st_size > 0 && (fsm->fmd5sum || fsm->md5sum)) {
727         void * md5sum = NULL;
728         int asAscii = (fsm->md5sum == NULL ? 1 : 0);
729
730         (void) Fflush(fsm->wfd);
731         fdFiniDigest(fsm->wfd, PGPHASHALGO_MD5, &md5sum, NULL, asAscii);
732
733         if (md5sum == NULL) {
734             rc = CPIOERR_MD5SUM_MISMATCH;
735             goto exit;
736         }
737
738         if (fsm->md5sum != NULL) {
739             if (memcmp(md5sum, fsm->md5sum, 16))
740                 rc = CPIOERR_MD5SUM_MISMATCH;
741         } else {
742             if (strcmp(md5sum, fsm->fmd5sum))
743                 rc = CPIOERR_MD5SUM_MISMATCH;
744         }
745         md5sum = _free(md5sum);
746     }
747
748 exit:
749     (void) fsmStage(fsm, FSM_WCLOSE);
750     return rc;
751 }
752
753 /** \ingroup payload
754  * Write next item to payload stream.
755  * @param fsm           file state machine data
756  * @param writeData     should data be written?
757  * @return              0 on success
758  */
759 static int writeFile(/*@special@*/ FSM_t fsm, int writeData)
760         /*@uses fsm->path, fsm->opath, fsm->sb, fsm->osb, fsm->cfd @*/
761         /*@globals fileSystem@*/
762         /*@modifies fsm, fileSystem @*/
763 {
764     const char * path = fsm->path;
765     const char * opath = fsm->opath;
766     struct stat * st = &fsm->sb;
767     struct stat * ost = &fsm->osb;
768     size_t pos = fdGetCpioPos(fsm->cfd);
769     char * symbuf = NULL;
770     int left;
771     int xx;
772     int rc;
773
774     st->st_size = (writeData ? ost->st_size : 0);
775
776     /*@-branchstate@*/
777     if (S_ISDIR(st->st_mode)) {
778         st->st_size = 0;
779     } else if (S_ISLNK(st->st_mode)) {
780         /*
781          * While linux puts the size of a symlink in the st_size field,
782          * I don't think that's a specified standard.
783          */
784         /* XXX NUL terminated result in fsm->rdbuf, len in fsm->rdnb. */
785         rc = fsmStage(fsm, FSM_READLINK);
786         if (rc) goto exit;
787         st->st_size = fsm->rdnb;
788         symbuf = alloca_strdup(fsm->rdbuf);     /* XXX save readlink return. */
789     }
790     /*@=branchstate@*/
791
792     if (fsm->mapFlags & CPIO_MAP_ABSOLUTE) {
793 /*@-compdef@*/ /* FIX: dirName/baseName annotations ? */
794         int nb = strlen(fsm->dirName) + strlen(fsm->baseName) + sizeof(".");
795         char * t = alloca(nb);
796         *t = '\0';
797         fsm->path = t;
798         if (fsm->mapFlags & CPIO_MAP_ADDDOT)
799             *t++ = '.';
800         t = stpcpy( stpcpy(t, fsm->dirName), fsm->baseName);
801 /*@=compdef@*/
802     } else if (fsm->mapFlags & CPIO_MAP_PATH) {
803         TFI_t fi = fsmGetFi(fsm);
804         fsm->path =
805             (fi->apath ? fi->apath[fsm->ix] + fi->striplen : fi->bnl[fsm->ix]);
806     }
807
808     rc = fsmStage(fsm, FSM_HWRITE);
809     fsm->path = path;
810     if (rc) goto exit;
811
812     if (writeData && S_ISREG(st->st_mode)) {
813 #if HAVE_MMAP
814         char * rdbuf = NULL;
815         void * mapped = (void *)-1;
816         size_t nmapped;
817 #endif
818
819         rc = fsmStage(fsm, FSM_ROPEN);
820         if (rc) goto exit;
821
822         /* XXX unbuffered mmap generates *lots* of fdio debugging */
823 #if HAVE_MMAP
824         nmapped = 0;
825         mapped = mmap(NULL, st->st_size, PROT_READ, MAP_SHARED, Fileno(fsm->rfd), 0);
826         if (mapped != (void *)-1) {
827             rdbuf = fsm->rdbuf;
828             fsm->rdbuf = (char *) mapped;
829             fsm->rdlen = nmapped = st->st_size;
830             xx = madvise(mapped, nmapped, MADV_DONTNEED);
831         }
832 #endif
833
834         left = st->st_size;
835
836         while (left) {
837 #if HAVE_MMAP
838           if (mapped != (void *)-1) {
839             fsm->rdnb = nmapped;
840           } else
841 #endif
842           {
843             fsm->rdlen = (left > fsm->rdsize ? fsm->rdsize : left),
844             rc = fsmStage(fsm, FSM_READ);
845             if (rc) goto exit;
846           }
847
848             /* XXX DWRITE uses rdnb for I/O length. */
849             rc = fsmStage(fsm, FSM_DWRITE);
850             if (rc) goto exit;
851
852             left -= fsm->wrnb;
853         }
854
855 #if HAVE_MMAP
856         if (mapped != (void *)-1) {
857             xx = msync(mapped, nmapped, MS_ASYNC);
858             /*@-noeffect@*/ xx = munmap(mapped, nmapped) /*@=noeffect@*/;
859             fsm->rdbuf = rdbuf;
860         }
861 #endif
862
863     } else if (writeData && S_ISLNK(st->st_mode)) {
864         /* XXX DWRITE uses rdnb for I/O length. */
865         strcpy(fsm->rdbuf, symbuf);     /* XXX restore readlink buffer. */
866         fsm->rdnb = strlen(symbuf);
867         rc = fsmStage(fsm, FSM_DWRITE);
868         if (rc) goto exit;
869     }
870
871     rc = fsmStage(fsm, FSM_PAD);
872     if (rc) goto exit;
873
874     {   const rpmTransactionSet ts = fsmGetTs(fsm);
875         TFI_t fi = fsmGetFi(fsm);
876         if (ts && ts->notify && fi) {
877             size_t size = (fdGetCpioPos(fsm->cfd) - pos);
878             /*@-type@*/ /* FIX: cast? */
879             /*@-noeffectuncon @*/ /* FIX: check rc */
880             (void)ts->notify(fi->h, RPMCALLBACK_INST_PROGRESS, size, size,
881                         rpmfiGetKey(fi), ts->notifyData);
882             /*@=noeffectuncon @*/
883             /*@=type@*/
884         }
885     }
886
887     rc = 0;
888
889 exit:
890     if (fsm->rfd)
891         (void) fsmStage(fsm, FSM_RCLOSE);
892     /*@-dependenttrans@*/
893     fsm->opath = opath;
894     fsm->path = path;
895     /*@=dependenttrans@*/
896     return rc;
897 }
898
899 /** \ingroup payload
900  * Write set of linked files to payload stream.
901  * @param fsm           file state machine data
902  * @return              0 on success
903  */
904 static int writeLinkedFile(/*@special@*/ FSM_t fsm)
905         /*@uses fsm->path, fsm->nsuffix, fsm->ix, fsm->li, fsm->failedFile @*/
906         /*@globals fileSystem@*/
907         /*@modifies fsm, fileSystem @*/
908 {
909     const char * path = fsm->path;
910     const char * nsuffix = fsm->nsuffix;
911     int iterIndex = fsm->ix;
912     int ec = 0;
913     int rc;
914     int i;
915
916     fsm->path = NULL;
917     fsm->nsuffix = NULL;
918     fsm->ix = -1;
919
920     for (i = fsm->li->nlink - 1; i >= 0; i--) {
921
922         if (fsm->li->filex[i] < 0) continue;
923
924         fsm->ix = fsm->li->filex[i];
925         rc = fsmStage(fsm, FSM_MAP);
926
927         /* Write data after last link. */
928         rc = writeFile(fsm, (i == 0));
929         if (fsm->failedFile && rc != 0 && *fsm->failedFile == NULL) {
930             ec = rc;
931             *fsm->failedFile = xstrdup(fsm->path);
932         }
933
934         fsm->path = _free(fsm->path);
935         fsm->li->filex[i] = -1;
936     }
937
938     fsm->ix = iterIndex;
939     fsm->nsuffix = nsuffix;
940     fsm->path = path;
941     return ec;
942 }
943
944 /** \ingroup payload
945  * Create pending hard links to existing file.
946  * @param fsm           file state machine data
947  * @return              0 on success
948  */
949 static int fsmMakeLinks(/*@special@*/ FSM_t fsm)
950         /*@uses fsm->path, fsm->opath, fsm->nsuffix, fsm->ix, fsm->li @*/
951         /*@globals fileSystem@*/
952         /*@modifies fsm, fileSystem @*/
953 {
954     const char * path = fsm->path;
955     const char * opath = fsm->opath;
956     const char * nsuffix = fsm->nsuffix;
957     int iterIndex = fsm->ix;
958     int ec = 0;
959     int rc;
960     int i;
961
962     fsm->path = NULL;
963     fsm->opath = NULL;
964     fsm->nsuffix = NULL;
965     fsm->ix = -1;
966
967     fsm->ix = fsm->li->filex[fsm->li->createdPath];
968     rc = fsmStage(fsm, FSM_MAP);
969     fsm->opath = fsm->path;
970     fsm->path = NULL;
971     /*@-branchstate@*/
972     for (i = 0; i < fsm->li->nlink; i++) {
973         if (fsm->li->filex[i] < 0) continue;
974         if (fsm->li->createdPath == i) continue;
975
976         fsm->ix = fsm->li->filex[i];
977         fsm->path = _free(fsm->path);
978         rc = fsmStage(fsm, FSM_MAP);
979         if (XFA_SKIPPING(fsm->action)) continue;
980
981         rc = fsmStage(fsm, FSM_VERIFY);
982         if (!rc) continue;
983         if (rc != CPIOERR_LSTAT_FAILED) break;
984
985         /* XXX link(fsm->opath, fsm->path) */
986         rc = fsmStage(fsm, FSM_LINK);
987         if (fsm->failedFile && rc != 0 && *fsm->failedFile == NULL) {
988             ec = rc;
989             *fsm->failedFile = xstrdup(fsm->path);
990         }
991
992         fsm->li->linksLeft--;
993     }
994     /*@=branchstate@*/
995     fsm->path = _free(fsm->path);
996     fsm->opath = _free(fsm->opath);
997
998     fsm->ix = iterIndex;
999     fsm->nsuffix = nsuffix;
1000     fsm->path = path;
1001     fsm->opath = opath;
1002     return ec;
1003 }
1004
1005 /** \ingroup payload
1006  * Commit hard linked file set atomically.
1007  * @param fsm           file state machine data
1008  * @return              0 on success
1009  */
1010 static int fsmCommitLinks(/*@special@*/ FSM_t fsm)
1011         /*@uses fsm->path, fsm->nsuffix, fsm->ix, fsm->sb,
1012                 fsm->li, fsm->links @*/
1013         /*@globals fileSystem@*/
1014         /*@modifies fsm, fileSystem @*/
1015 {
1016     const char * path = fsm->path;
1017     const char * nsuffix = fsm->nsuffix;
1018     int iterIndex = fsm->ix;
1019     struct stat * st = &fsm->sb;
1020     int rc = 0;
1021     int i;
1022
1023     fsm->path = NULL;
1024     fsm->nsuffix = NULL;
1025     fsm->ix = -1;
1026
1027     /*@-branchstate@*/
1028     for (fsm->li = fsm->links; fsm->li; fsm->li = fsm->li->next) {
1029         if (fsm->li->sb.st_ino == st->st_ino && fsm->li->sb.st_dev == st->st_dev)
1030             break;
1031     }
1032     /*@=branchstate@*/
1033
1034     for (i = 0; i < fsm->li->nlink; i++) {
1035         if (fsm->li->filex[i] < 0) continue;
1036         fsm->ix = fsm->li->filex[i];
1037         rc = fsmStage(fsm, FSM_MAP);
1038         if (!XFA_SKIPPING(fsm->action))
1039             rc = fsmStage(fsm, FSM_COMMIT);
1040         fsm->path = _free(fsm->path);
1041         fsm->li->filex[i] = -1;
1042     }
1043
1044     fsm->ix = iterIndex;
1045     fsm->nsuffix = nsuffix;
1046     fsm->path = path;
1047     return rc;
1048 }
1049
1050 /**
1051  * Remove (if created) directories not explicitly included in package.
1052  * @param fsm           file state machine data
1053  * @return              0 on success
1054  */
1055 static int fsmRmdirs(/*@special@*/ FSM_t fsm)
1056         /*@uses fsm->path, fsm->dnlx, fsm->ldn, fsm->rdbuf, fsm->iter @*/
1057         /*@globals fileSystem@*/
1058         /*@modifies fsm, fileSystem @*/
1059 {
1060     const char * path = fsm->path;
1061     void * dnli = dnlInitIterator(fsm, 1);
1062     char * dn = fsm->rdbuf;
1063     int dc = dnlCount(dnli);
1064     int rc = 0;
1065
1066     fsm->path = NULL;
1067     dn[0] = '\0';
1068     /*@-observertrans -dependenttrans@*/
1069     if (fsm->ldn != NULL && fsm->dnlx != NULL)
1070     while ((fsm->path = dnlNextIterator(dnli)) != NULL) {
1071         int dnlen = strlen(fsm->path);
1072         char * te;
1073
1074         dc = dnlIndex(dnli);
1075         if (fsm->dnlx[dc] < 1 || fsm->dnlx[dc] >= dnlen)
1076             continue;
1077
1078         /* Copy to avoid const on fsm->path. */
1079         te = stpcpy(dn, fsm->path) - 1;
1080         fsm->path = dn;
1081
1082         /* Remove generated directories. */
1083         /*@-usereleased@*/ /* LCL: te used after release? */
1084         do {
1085             if (*te == '/') {
1086                 *te = '\0';
1087                 rc = fsmStage(fsm, FSM_RMDIR);
1088                 *te = '/';
1089             }
1090             if (rc)
1091                 /*@innerbreak@*/ break;
1092             te--;
1093         } while ((te - fsm->path) > fsm->dnlx[dc]);
1094         /*@=usereleased@*/
1095     }
1096     dnli = dnlFreeIterator(dnli);
1097     /*@=observertrans =dependenttrans@*/
1098
1099     fsm->path = path;
1100     return rc;
1101 }
1102
1103 /**
1104  * Create (if necessary) directories not explicitly included in package.
1105  * @param fsm           file state machine data
1106  * @return              0 on success
1107  */
1108 static int fsmMkdirs(/*@special@*/ FSM_t fsm)
1109         /*@uses fsm->path, fsm->sb, fsm->osb, fsm->rdbuf, fsm->iter,
1110                 fsm->ldn, fsm->ldnlen, fsm->ldnalloc @*/
1111         /*@defines fsm->dnlx, fsm->ldn @*/
1112         /*@globals fileSystem@*/
1113         /*@modifies fsm, fileSystem @*/
1114 {
1115     struct stat * st = &fsm->sb;
1116     struct stat * ost = &fsm->osb;
1117     const char * path = fsm->path;
1118     mode_t st_mode = st->st_mode;
1119     void * dnli = dnlInitIterator(fsm, 0);
1120     char * dn = fsm->rdbuf;
1121     int dc = dnlCount(dnli);
1122     int rc = 0;
1123     int i;
1124
1125     fsm->path = NULL;
1126
1127     dn[0] = '\0';
1128     fsm->dnlx = (dc ? xcalloc(dc, sizeof(*fsm->dnlx)) : NULL);
1129     /*@-observertrans -dependenttrans@*/
1130     if (fsm->dnlx != NULL)
1131     while ((fsm->path = dnlNextIterator(dnli)) != NULL) {
1132         int dnlen = strlen(fsm->path);
1133         char * te;
1134
1135         dc = dnlIndex(dnli);
1136         if (dc < 0) continue;
1137         fsm->dnlx[dc] = dnlen;
1138         if (dnlen <= 1)
1139             continue;
1140
1141         /*@-compdef -nullpass@*/        /* FIX: fsm->ldn not defined ??? */
1142         if (dnlen <= fsm->ldnlen && !strcmp(fsm->path, fsm->ldn))
1143             continue;
1144         /*@=compdef =nullpass@*/
1145
1146         /* Copy to avoid const on fsm->path. */
1147         (void) stpcpy(dn, fsm->path);
1148         fsm->path = dn;
1149
1150         /* Assume '/' directory exists, "mkdir -p" for others if non-existent */
1151         for (i = 1, te = dn + 1; *te != '\0'; te++, i++) {
1152             if (*te != '/')
1153                 /*@innercontinue@*/ continue;
1154
1155             *te = '\0';
1156
1157             /* Already validated? */
1158             /*@-usedef -compdef -nullpass -nullderef@*/
1159             if (i < fsm->ldnlen &&
1160                 (fsm->ldn[i] == '/' || fsm->ldn[i] == '\0') &&
1161                 !strncmp(fsm->path, fsm->ldn, i))
1162             {
1163                 *te = '/';
1164                 /* Move pre-existing path marker forward. */
1165                 fsm->dnlx[dc] = (te - dn);
1166                 /*@innercontinue@*/ continue;
1167             }
1168             /*@=usedef =compdef =nullpass =nullderef@*/
1169
1170             /* Validate next component of path. */
1171             rc = fsmStage(fsm, FSM_LSTAT);
1172             *te = '/';
1173
1174             /* Directory already exists? */
1175             if (rc == 0 && S_ISDIR(ost->st_mode)) {
1176                 /* Move pre-existing path marker forward. */
1177                 fsm->dnlx[dc] = (te - dn);
1178             } else if (rc == CPIOERR_LSTAT_FAILED) {
1179                 TFI_t fi = fsmGetFi(fsm);
1180                 *te = '\0';
1181                 st->st_mode = S_IFDIR | (fi->dperms & 07777);
1182                 rc = fsmStage(fsm, FSM_MKDIR);
1183                 if (!rc)
1184                     rpmMessage(RPMMESS_DEBUG,
1185                         _("%s directory created with perms %04o.\n"),
1186                         fsm->path, (unsigned)(st->st_mode & 07777));
1187                 *te = '/';
1188             }
1189             if (rc)
1190                 /*@innerbreak@*/ break;
1191         }
1192         if (rc) break;
1193
1194         /* Save last validated path. */
1195 /*@-compdef@*/ /* FIX: ldn/path annotations ? */
1196         if (fsm->ldnalloc < (dnlen + 1)) {
1197             fsm->ldnalloc = dnlen + 100;
1198             fsm->ldn = xrealloc(fsm->ldn, fsm->ldnalloc);
1199         }
1200         if (fsm->ldn != NULL) { /* XXX can't happen */
1201             strcpy(fsm->ldn, fsm->path);
1202             fsm->ldnlen = dnlen;
1203         }
1204 /*@=compdef@*/
1205     }
1206     dnli = dnlFreeIterator(dnli);
1207     /*@=observertrans =dependenttrans@*/
1208
1209     fsm->path = path;
1210     st->st_mode = st_mode;              /* XXX restore st->st_mode */
1211 /*@-compdef@*/ /* FIX: ldn/path annotations ? */
1212     return rc;
1213 /*@=compdef@*/
1214 }
1215
1216 #ifdef  NOTYET
1217 /**
1218  * Check for file on disk.
1219  * @param fsm           file state machine data
1220  * @return              0 on success
1221  */
1222 static int fsmStat(FSM_t fsm)
1223 {
1224     int saveerrno = errno;
1225     int rc = 0;
1226
1227     if (fsm->path != NULL) {
1228         int saveernno = errno;
1229         rc = fsmStage(fsm, (!(fsm->mapFlags & CPIO_FOLLOW_SYMLINKS)
1230                         ? FSM_LSTAT : FSM_STAT));
1231         if (rc == CPIOERR_LSTAT_FAILED && errno == ENOENT) {
1232             errno = saveerrno;
1233             rc = 0;
1234             fsm->exists = 0;
1235         } else if (rc == 0) {
1236             fsm->exists = 1;
1237         }
1238     } else {
1239         /* Skip %ghost files on build. */
1240         fsm->exists = 0;
1241     }
1242     return rc;
1243 }
1244 #endif
1245
1246 /*@-compmempass@*/
1247 int fsmStage(FSM_t fsm, fileStage stage)
1248 {
1249 #ifdef  UNUSED
1250     fileStage prevStage = fsm->stage;
1251     const char * const prev = fileStageString(prevStage);
1252 #endif
1253     static int modulo = 4;
1254     const char * const cur = fileStageString(stage);
1255     struct stat * st = &fsm->sb;
1256     struct stat * ost = &fsm->osb;
1257     int saveerrno = errno;
1258     int rc = fsm->rc;
1259     size_t left;
1260     int i;
1261
1262 #define _fafilter(_a)   \
1263     (!((_a) == FA_CREATE || (_a) == FA_ERASE || (_a) == FA_COPYIN || (_a) == FA_COPYOUT) \
1264         ? fileActionString(_a) : "")
1265
1266     if (stage & FSM_DEAD) {
1267         /* do nothing */
1268     } else if (stage & FSM_INTERNAL) {
1269         if (_fsm_debug && !(stage & FSM_SYSCALL))
1270             rpmMessage(RPMMESS_DEBUG, " %8s %06o%3d (%4d,%4d)%10d %s %s\n",
1271                 cur,
1272                 (unsigned)st->st_mode, (int)st->st_nlink,
1273                 (int)st->st_uid, (int)st->st_gid, (int)st->st_size,
1274                 (fsm->path ? fsm->path : ""),
1275                 _fafilter(fsm->action));
1276     } else {
1277         fsm->stage = stage;
1278         if (_fsm_debug || !(stage & FSM_VERBOSE))
1279             rpmMessage(RPMMESS_DEBUG, "%-8s  %06o%3d (%4d,%4d)%10d %s %s\n",
1280                 cur,
1281                 (unsigned)st->st_mode, (int)st->st_nlink,
1282                 (int)st->st_uid, (int)st->st_gid, (int)st->st_size,
1283                 (fsm->path ? fsm->path + fsm->astriplen : ""),
1284                 _fafilter(fsm->action));
1285     }
1286 #undef  _fafilter
1287
1288     /*@-branchstate@*/
1289     switch (stage) {
1290     case FSM_UNKNOWN:
1291         break;
1292     case FSM_PKGINSTALL:
1293         while (1) {
1294             /* Clean fsm, free'ing memory. Read next archive header. */
1295             rc = fsmStage(fsm, FSM_INIT);
1296
1297             /* Exit on end-of-payload. */
1298             if (rc == CPIOERR_HDR_TRAILER) {
1299                 rc = 0;
1300                 /*@loopbreak@*/ break;
1301             }
1302
1303             /* Exit on error. */
1304             if (rc) {
1305                 fsm->postpone = 1;
1306                 (void) fsmStage(fsm, FSM_UNDO);
1307                 /*@loopbreak@*/ break;
1308             }
1309
1310             /* Extract file from archive. */
1311             rc = fsmStage(fsm, FSM_PROCESS);
1312             if (rc) {
1313                 (void) fsmStage(fsm, FSM_UNDO);
1314                 /*@loopbreak@*/ break;
1315             }
1316
1317             /* Notify on success. */
1318             (void) fsmStage(fsm, FSM_NOTIFY);
1319
1320             rc = fsmStage(fsm, FSM_FINI);
1321             if (rc) {
1322                 /*@loopbreak@*/ break;
1323             }
1324         }
1325         break;
1326     case FSM_PKGERASE:
1327     case FSM_PKGCOMMIT:
1328         while (1) {
1329             /* Clean fsm, free'ing memory. */
1330             rc = fsmStage(fsm, FSM_INIT);
1331
1332             /* Exit on end-of-payload. */
1333             if (rc == CPIOERR_HDR_TRAILER) {
1334                 rc = 0;
1335                 /*@loopbreak@*/ break;
1336             }
1337
1338             /* Rename/erase next item. */
1339             if (fsmStage(fsm, FSM_FINI))
1340                 /*@loopbreak@*/ break;
1341         }
1342         break;
1343     case FSM_PKGBUILD:
1344         while (1) {
1345
1346             rc = fsmStage(fsm, FSM_INIT);
1347
1348             /* Exit on end-of-payload. */
1349             if (rc == CPIOERR_HDR_TRAILER) {
1350                 rc = 0;
1351                 /*@loopbreak@*/ break;
1352             }
1353
1354             /* Exit on error. */
1355             if (rc) {
1356                 fsm->postpone = 1;
1357                 (void) fsmStage(fsm, FSM_UNDO);
1358                 /*@loopbreak@*/ break;
1359             }
1360
1361             /* Copy file into archive. */
1362             rc = fsmStage(fsm, FSM_PROCESS);
1363             if (rc) {
1364                 (void) fsmStage(fsm, FSM_UNDO);
1365                 /*@loopbreak@*/ break;
1366             }
1367
1368             if (fsmStage(fsm, FSM_FINI))
1369                 /*@loopbreak@*/ break;
1370         }
1371
1372         /* Flush partial sets of hard linked files. */
1373         if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) {
1374             int nlink, j;
1375             while ((fsm->li = fsm->links) != NULL) {
1376                 fsm->links = fsm->li->next;
1377                 fsm->li->next = NULL;
1378
1379                 /* Re-calculate link count for archive header. */
1380                 for (j = -1, nlink = 0, i = 0; i < fsm->li->nlink; i++) {
1381                     if (fsm->li->filex[i] < 0)
1382                         /*@innercontinue@*/ continue;
1383                     nlink++;
1384                     if (j == -1) j = i;
1385                 }
1386                 /* XXX force the contents out as well. */
1387                 if (j != 0) {
1388                     fsm->li->filex[0] = fsm->li->filex[j];
1389                     fsm->li->filex[j] = -1;
1390                 }
1391                 fsm->li->sb.st_nlink = nlink;
1392
1393                 fsm->sb = fsm->li->sb;  /* structure assignment */
1394                 fsm->osb = fsm->sb;     /* structure assignment */
1395
1396                 if (!rc) rc = writeLinkedFile(fsm);
1397
1398                 fsm->li = freeHardLink(fsm->li);
1399             }
1400         }
1401
1402         if (!rc)
1403             rc = fsmStage(fsm, FSM_TRAILER);
1404
1405         break;
1406     case FSM_CREATE:
1407         {   rpmTransactionSet ts = fsmGetTs(fsm);
1408 #define _tsmask (RPMTRANS_FLAG_PKGCOMMIT | RPMTRANS_FLAG_COMMIT)
1409             fsm->commit = ((ts && (ts->transFlags & _tsmask) &&
1410                         fsm->goal != FSM_PKGCOMMIT) ? 0 : 1);
1411 #undef _tsmask
1412         }
1413         fsm->path = _free(fsm->path);
1414         fsm->opath = _free(fsm->opath);
1415         fsm->dnlx = _free(fsm->dnlx);
1416
1417         fsm->ldn = _free(fsm->ldn);
1418         fsm->ldnalloc = fsm->ldnlen = 0;
1419
1420         fsm->rdsize = fsm->wrsize = 0;
1421         fsm->rdbuf = fsm->rdb = _free(fsm->rdb);
1422         fsm->wrbuf = fsm->wrb = _free(fsm->wrb);
1423         if (fsm->goal == FSM_PKGINSTALL || fsm->goal == FSM_PKGBUILD) {
1424             fsm->rdsize = 8 * BUFSIZ;
1425             fsm->rdbuf = fsm->rdb = xmalloc(fsm->rdsize);
1426             fsm->wrsize = 8 * BUFSIZ;
1427             fsm->wrbuf = fsm->wrb = xmalloc(fsm->wrsize);
1428         }
1429
1430         fsm->mkdirsdone = 0;
1431         fsm->ix = -1;
1432         fsm->links = NULL;
1433         fsm->li = NULL;
1434         /*@-mods@*/
1435         errno = 0;      /* XXX get rid of EBADF */
1436         /*@=mods@*/
1437
1438         /* Detect and create directories not explicitly in package. */
1439         if (fsm->goal == FSM_PKGINSTALL) {
1440             rc = fsmStage(fsm, FSM_MKDIRS);
1441             if (!rc) fsm->mkdirsdone = 1;
1442         }
1443
1444         break;
1445     case FSM_INIT:
1446         fsm->path = _free(fsm->path);
1447         fsm->postpone = 0;
1448         fsm->diskchecked = fsm->exists = 0;
1449         fsm->subdir = NULL;
1450         fsm->suffix = (fsm->sufbuf[0] != '\0' ? fsm->sufbuf : NULL);
1451         fsm->action = FA_UNKNOWN;
1452         fsm->osuffix = NULL;
1453         fsm->nsuffix = NULL;
1454
1455         if (fsm->goal == FSM_PKGINSTALL) {
1456             /* Read next header from payload, checking for end-of-payload. */
1457             rc = fsmStage(fsm, FSM_NEXT);
1458         }
1459         if (rc) break;
1460
1461         /* Identify mapping index. */
1462         fsm->ix = ((fsm->goal == FSM_PKGINSTALL)
1463                 ? mapFind(fsm->iter, fsm->path) : mapNextIterator(fsm->iter));
1464
1465         /* Detect end-of-loop and/or mapping error. */
1466         if (fsm->ix < 0) {
1467             if (fsm->goal == FSM_PKGINSTALL) {
1468 #if 0
1469                 rpmMessage(RPMMESS_WARNING,
1470                     _("archive file %s was not found in header file list\n"),
1471                         fsm->path);
1472 #endif
1473                 if (fsm->failedFile && *fsm->failedFile == NULL)
1474                     *fsm->failedFile = xstrdup(fsm->path);
1475                 rc = CPIOERR_UNMAPPED_FILE;
1476             } else {
1477                 rc = CPIOERR_HDR_TRAILER;
1478             }
1479             break;
1480         }
1481
1482         /* On non-install, mode must be known so that dirs don't get suffix. */
1483         if (fsm->goal != FSM_PKGINSTALL) {
1484             TFI_t fi = fsmGetFi(fsm);
1485             st->st_mode = fi->fmodes[fsm->ix];
1486         }
1487
1488         /* Generate file path. */
1489         rc = fsmStage(fsm, FSM_MAP);
1490         if (rc) break;
1491
1492         /* Perform lstat/stat for disk file. */
1493 #ifdef  NOTYET
1494         rc = fsmStat(fsm);
1495 #else
1496         if (fsm->path != NULL) {
1497             rc = fsmStage(fsm, (!(fsm->mapFlags & CPIO_FOLLOW_SYMLINKS)
1498                         ? FSM_LSTAT : FSM_STAT));
1499             if (rc == CPIOERR_LSTAT_FAILED && errno == ENOENT) {
1500                 /*@-mods@*/
1501                 errno = saveerrno;
1502                 /*@=mods@*/
1503                 rc = 0;
1504                 fsm->exists = 0;
1505             } else if (rc == 0) {
1506                 fsm->exists = 1;
1507             }
1508         } else {
1509             /* Skip %ghost files on build. */
1510             fsm->exists = 0;
1511         }
1512 #endif
1513         fsm->diskchecked = 1;
1514         if (rc) break;
1515
1516         /* On non-install, the disk file stat is what's remapped. */
1517         if (fsm->goal != FSM_PKGINSTALL)
1518             *st = *ost;                 /* structure assignment */
1519
1520         /* Remap file perms, owner, and group. */
1521         rc = fsmMapAttrs(fsm);
1522         if (rc) break;
1523
1524         fsm->postpone = XFA_SKIPPING(fsm->action);
1525         if (fsm->goal == FSM_PKGINSTALL || fsm->goal == FSM_PKGBUILD) {
1526             /*@-evalorder@*/ /* FIX: saveHardLink can modify fsm */
1527             if (!S_ISDIR(st->st_mode) && st->st_nlink > 1)
1528                 fsm->postpone = saveHardLink(fsm);
1529             /*@=evalorder@*/
1530         }
1531         break;
1532     case FSM_PRE:
1533         break;
1534     case FSM_MAP:
1535         rc = fsmMapPath(fsm);
1536         break;
1537     case FSM_MKDIRS:
1538         rc = fsmMkdirs(fsm);
1539         break;
1540     case FSM_RMDIRS:
1541         if (fsm->dnlx)
1542             rc = fsmRmdirs(fsm);
1543         break;
1544     case FSM_PROCESS:
1545         if (fsm->postpone) {
1546             if (fsm->goal == FSM_PKGINSTALL)
1547                 rc = fsmStage(fsm, FSM_EAT);
1548             break;
1549         }
1550
1551         if (fsm->goal == FSM_PKGBUILD) {
1552             if (!S_ISDIR(st->st_mode) && st->st_nlink > 1) {
1553                 struct hardLink_s * li, * prev;
1554
1555 if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break;
1556                 rc = writeLinkedFile(fsm);
1557                 if (rc) break;  /* W2DO? */
1558
1559                 for (li = fsm->links, prev = NULL; li; prev = li, li = li->next)
1560                      if (li == fsm->li)
1561                         /*@loopbreak@*/ break;
1562
1563                 if (prev == NULL)
1564                     fsm->links = fsm->li->next;
1565                 else
1566                     prev->next = fsm->li->next;
1567                 fsm->li->next = NULL;
1568                 fsm->li = freeHardLink(fsm->li);
1569             } else {
1570                 rc = writeFile(fsm, 1);
1571             }
1572             break;
1573         }
1574
1575         if (fsm->goal != FSM_PKGINSTALL)
1576             break;
1577
1578         if (S_ISREG(st->st_mode)) {
1579             const char * path = fsm->path;
1580             if (fsm->osuffix)
1581                 fsm->path = fsmFsPath(fsm, st, NULL, NULL);
1582             rc = fsmStage(fsm, FSM_VERIFY);
1583
1584             if (rc == 0 && fsm->osuffix) {
1585                 const char * opath = fsm->opath;
1586                 fsm->opath = fsm->path;
1587                 fsm->path = fsmFsPath(fsm, st, NULL, fsm->osuffix);
1588                 rc = fsmStage(fsm, FSM_RENAME);
1589                 if (!rc)
1590                     rpmMessage(RPMMESS_WARNING,
1591                         _("%s saved as %s\n"), fsm->opath, fsm->path);
1592                 fsm->path = _free(fsm->path);
1593                 fsm->opath = opath;
1594             }
1595
1596             /*@-dependenttrans@*/
1597             fsm->path = path;
1598             /*@=dependenttrans@*/
1599             if (rc != CPIOERR_LSTAT_FAILED) return rc;
1600             rc = expandRegular(fsm);
1601         } else if (S_ISDIR(st->st_mode)) {
1602             mode_t st_mode = st->st_mode;
1603             rc = fsmStage(fsm, FSM_VERIFY);
1604             if (rc == CPIOERR_LSTAT_FAILED) {
1605                 st->st_mode &= ~07777;          /* XXX abuse st->st_mode */
1606                 st->st_mode |=  00700;
1607                 rc = fsmStage(fsm, FSM_MKDIR);
1608                 st->st_mode = st_mode;          /* XXX restore st->st_mode */
1609             }
1610         } else if (S_ISLNK(st->st_mode)) {
1611             const char * opath = fsm->opath;
1612
1613             if ((st->st_size + 1) > fsm->rdsize) {
1614                 rc = CPIOERR_HDR_SIZE;
1615                 break;
1616             }
1617
1618             fsm->wrlen = st->st_size;
1619             rc = fsmStage(fsm, FSM_DREAD);
1620             if (!rc && fsm->rdnb != fsm->wrlen)
1621                 rc = CPIOERR_READ_FAILED;
1622             if (rc) break;
1623
1624             fsm->wrbuf[st->st_size] = '\0';
1625             /* XXX symlink(fsm->opath, fsm->path) */
1626             /*@-dependenttrans@*/
1627             fsm->opath = fsm->wrbuf;
1628             /*@=dependenttrans@*/
1629             rc = fsmStage(fsm, FSM_VERIFY);
1630             if (rc == CPIOERR_LSTAT_FAILED)
1631                 rc = fsmStage(fsm, FSM_SYMLINK);
1632             fsm->opath = opath;         /* XXX restore fsm->path */
1633         } else if (S_ISFIFO(st->st_mode)) {
1634             mode_t st_mode = st->st_mode;
1635             /* This mimics cpio S_ISSOCK() behavior but probably isnt' right */
1636             rc = fsmStage(fsm, FSM_VERIFY);
1637             if (rc == CPIOERR_LSTAT_FAILED) {
1638                 st->st_mode = 0000;             /* XXX abuse st->st_mode */
1639                 rc = fsmStage(fsm, FSM_MKFIFO);
1640                 st->st_mode = st_mode;  /* XXX restore st->st_mode */
1641             }
1642         } else if (S_ISCHR(st->st_mode) ||
1643                    S_ISBLK(st->st_mode) ||
1644     /*@-unrecog@*/ S_ISSOCK(st->st_mode) /*@=unrecog@*/)
1645         {
1646             rc = fsmStage(fsm, FSM_VERIFY);
1647             if (rc == CPIOERR_LSTAT_FAILED)
1648                 rc = fsmStage(fsm, FSM_MKNOD);
1649         } else {
1650             rc = CPIOERR_UNKNOWN_FILETYPE;
1651         }
1652         if (!S_ISDIR(st->st_mode) && st->st_nlink > 1) {
1653             fsm->li->createdPath = fsm->li->linkIndex;
1654             rc = fsmMakeLinks(fsm);
1655         }
1656         break;
1657     case FSM_POST:
1658         break;
1659     case FSM_MKLINKS:
1660         rc = fsmMakeLinks(fsm);
1661         break;
1662     case FSM_NOTIFY:            /* XXX move from fsm to psm -> tsm */
1663         if (fsm->goal == FSM_PKGINSTALL || fsm->goal == FSM_PKGBUILD) {
1664             rpmTransactionSet ts = fsmGetTs(fsm);
1665             TFI_t fi = fsmGetFi(fsm);
1666             if (ts && ts->notify && fi) {
1667                 /*@-type@*/ /* FIX: cast? */
1668                 /*@-noeffectuncon @*/ /* FIX: check rc */
1669                 (void)ts->notify(fi->h, RPMCALLBACK_INST_PROGRESS,
1670                         fdGetCpioPos(fsm->cfd), fi->archiveSize,
1671                         rpmfiGetKey(fi), ts->notifyData);
1672                 /*@=noeffectuncon @*/
1673                 /*@=type@*/
1674             }
1675         }
1676         break;
1677     case FSM_UNDO:
1678         if (fsm->postpone)
1679             break;
1680         if (fsm->goal == FSM_PKGINSTALL) {
1681             (void) fsmStage(fsm,
1682                 (S_ISDIR(st->st_mode) ? FSM_RMDIR : FSM_UNLINK));
1683
1684 #ifdef  NOTYET  /* XXX remove only dirs just created, not all. */
1685             if (fsm->dnlx)
1686                 (void) fsmStage(fsm, FSM_RMDIRS);
1687 #endif
1688             /*@-mods@*/
1689             errno = saveerrno;
1690             /*@=mods@*/
1691         }
1692         if (fsm->failedFile && *fsm->failedFile == NULL)
1693             *fsm->failedFile = xstrdup(fsm->path);
1694         break;
1695     case FSM_FINI:
1696         if (!fsm->postpone && fsm->commit) {
1697             if (fsm->goal == FSM_PKGINSTALL)
1698                 rc = ((!S_ISDIR(st->st_mode) && st->st_nlink > 1)
1699                         ? fsmCommitLinks(fsm) : fsmStage(fsm, FSM_COMMIT));
1700             if (fsm->goal == FSM_PKGCOMMIT)
1701                 rc = fsmStage(fsm, FSM_COMMIT);
1702             if (fsm->goal == FSM_PKGERASE)
1703                 rc = fsmStage(fsm, FSM_COMMIT);
1704         }
1705         fsm->path = _free(fsm->path);
1706         fsm->opath = _free(fsm->opath);
1707         memset(st, 0, sizeof(*st));
1708         memset(ost, 0, sizeof(*ost));
1709         break;
1710     case FSM_COMMIT:
1711         /* Rename pre-existing modified or unmanaged file. */
1712         if (fsm->diskchecked && fsm->exists && fsm->osuffix) {
1713             const char * opath = fsm->opath;
1714             const char * path = fsm->path;
1715             fsm->opath = fsmFsPath(fsm, st, NULL, NULL);
1716             fsm->path = fsmFsPath(fsm, st, NULL, fsm->osuffix);
1717             rc = fsmStage(fsm, FSM_RENAME);
1718             if (!rc) {
1719                 rpmMessage(RPMMESS_WARNING, _("%s saved as %s\n"),
1720                                 fsm->opath, fsm->path);
1721             }
1722             fsm->path = _free(fsm->path);
1723             fsm->path = path;
1724             fsm->opath = _free(fsm->opath);
1725             fsm->opath = opath;
1726         }
1727
1728         /* Remove erased files. */
1729         if (fsm->goal == FSM_PKGERASE) {
1730             if (fsm->action == FA_ERASE) {
1731                 TFI_t fi = fsmGetFi(fsm);
1732                 if (S_ISDIR(st->st_mode)) {
1733                     rc = fsmStage(fsm, FSM_RMDIR);
1734                     if (!rc) break;
1735                     switch (errno) {
1736                     case ENOENT: /* XXX rmdir("/") linux 2.2.x kernel hack */
1737                     case ENOTEMPTY:
1738         /* XXX make sure that build side permits %missingok on directories. */
1739                         if (fsm->fflags & RPMFILE_MISSINGOK)
1740                             /*@innerbreak@*/ break;
1741
1742                         /* XXX common error message. */
1743                         rpmError(
1744                             (strict_erasures ? RPMERR_RMDIR : RPMDEBUG_RMDIR),
1745                             _("%s rmdir of %s failed: Directory not empty\n"), 
1746                                 fiTypeString(fi), fsm->path);
1747                         /*@innerbreak@*/ break;
1748                     default:
1749                         rpmError(
1750                             (strict_erasures ? RPMERR_RMDIR : RPMDEBUG_RMDIR),
1751                                 _("%s rmdir of %s failed: %s\n"),
1752                                 fiTypeString(fi), fsm->path, strerror(errno));
1753                         /*@innerbreak@*/ break;
1754                     }
1755                 } else {
1756                     rc = fsmStage(fsm, FSM_UNLINK);
1757                     if (!rc) break;
1758                     if (!(errno == ENOENT && (fsm->fflags & RPMFILE_MISSINGOK)))
1759                         rpmError(
1760                             (strict_erasures ? RPMERR_UNLINK : RPMDEBUG_UNLINK),
1761                                 _("%s unlink of %s failed: %s\n"),
1762                                 fiTypeString(fi), fsm->path, strerror(errno));
1763                 }
1764             }
1765             /* XXX Failure to remove is not (yet) cause for failure. */
1766             if (!strict_erasures) rc = 0;
1767             break;
1768         }
1769
1770         if (!S_ISSOCK(st->st_mode)) {   /* XXX /dev/log et al are skipped */
1771             /* Rename temporary to final file name. */
1772             if (!S_ISDIR(st->st_mode) &&
1773                 (fsm->subdir || fsm->suffix || fsm->nsuffix))
1774             {
1775                 fsm->opath = fsm->path;
1776                 fsm->path = fsmFsPath(fsm, st, NULL, fsm->nsuffix);
1777                 rc = fsmStage(fsm, FSM_RENAME);
1778                 if (!rc && fsm->nsuffix) {
1779                     const char * opath = fsmFsPath(fsm, st, NULL, NULL);
1780                     rpmMessage(RPMMESS_WARNING, _("%s created as %s\n"),
1781                                 (opath ? opath : ""), fsm->path);
1782                     opath = _free(opath);
1783                 }
1784                 fsm->opath = _free(fsm->opath);
1785             }
1786             if (S_ISLNK(st->st_mode)) {
1787                 if (!rc && !getuid())
1788                     rc = fsmStage(fsm, FSM_LCHOWN);
1789             } else {
1790                 if (!rc && !getuid())
1791                     rc = fsmStage(fsm, FSM_CHOWN);
1792                 if (!rc)
1793                     rc = fsmStage(fsm, FSM_CHMOD);
1794                 if (!rc) {
1795                     time_t mtime = st->st_mtime;
1796                     TFI_t fi = fsmGetFi(fsm);
1797                     if (fi->fmtimes)
1798                         st->st_mtime = fi->fmtimes[fsm->ix];
1799                     rc = fsmStage(fsm, FSM_UTIME);
1800                     st->st_mtime = mtime;
1801                 }
1802             }
1803         }
1804
1805         /* Notify on success. */
1806         if (!rc)                rc = fsmStage(fsm, FSM_NOTIFY);
1807         else if (fsm->failedFile && *fsm->failedFile == NULL) {
1808             *fsm->failedFile = fsm->path;
1809             fsm->path = NULL;
1810         }
1811         break;
1812     case FSM_DESTROY:
1813         fsm->path = _free(fsm->path);
1814
1815         /* Check for hard links missing from payload. */
1816         while ((fsm->li = fsm->links) != NULL) {
1817             fsm->links = fsm->li->next;
1818             fsm->li->next = NULL;
1819             if (fsm->goal == FSM_PKGINSTALL &&
1820                         fsm->commit && fsm->li->linksLeft)
1821             {
1822                 for (i = 0 ; i < fsm->li->linksLeft; i++) {
1823                     if (fsm->li->filex[i] < 0)
1824                         /*@innercontinue@*/ continue;
1825                     rc = CPIOERR_MISSING_HARDLINK;
1826                     if (fsm->failedFile && *fsm->failedFile == NULL) {
1827                         fsm->ix = fsm->li->filex[i];
1828                         if (!fsmStage(fsm, FSM_MAP)) {
1829                             *fsm->failedFile = fsm->path;
1830                             fsm->path = NULL;
1831                         }
1832                     }
1833                     /*@loopbreak@*/ break;
1834                 }
1835             }
1836             if (fsm->goal == FSM_PKGBUILD &&
1837                 (fsm->mapFlags & CPIO_ALL_HARDLINKS))
1838             {
1839                 rc = CPIOERR_MISSING_HARDLINK;
1840             }
1841             fsm->li = freeHardLink(fsm->li);
1842         }
1843         fsm->ldn = _free(fsm->ldn);
1844         fsm->ldnalloc = fsm->ldnlen = 0;
1845         fsm->rdbuf = fsm->rdb = _free(fsm->rdb);
1846         fsm->wrbuf = fsm->wrb = _free(fsm->wrb);
1847         break;
1848     case FSM_VERIFY:
1849         if (fsm->diskchecked && !fsm->exists) {
1850             rc = CPIOERR_LSTAT_FAILED;
1851             break;
1852         }
1853         if (S_ISREG(st->st_mode)) {
1854             char * path = alloca(strlen(fsm->path) + sizeof("-RPMDELETE"));
1855             (void) stpcpy( stpcpy(path, fsm->path), "-RPMDELETE");
1856             /*
1857              * XXX HP-UX (and other os'es) don't permit unlink on busy
1858              * XXX files.
1859              */
1860             fsm->opath = fsm->path;
1861             fsm->path = path;
1862             rc = fsmStage(fsm, FSM_RENAME);
1863             if (!rc)
1864                     (void) fsmStage(fsm, FSM_UNLINK);
1865             else
1866                     rc = CPIOERR_UNLINK_FAILED;
1867             fsm->path = fsm->opath;
1868             fsm->opath = NULL;
1869             return (rc ? rc : CPIOERR_LSTAT_FAILED);    /* XXX HACK */
1870             /*@notreached@*/ break;
1871         } else if (S_ISDIR(st->st_mode)) {
1872             if (S_ISDIR(ost->st_mode))          return 0;
1873             if (S_ISLNK(ost->st_mode)) {
1874                 rc = fsmStage(fsm, FSM_STAT);
1875                 if (rc == CPIOERR_STAT_FAILED && errno == ENOENT) rc = 0;
1876                 if (rc) break;
1877                 /*@-mods@*/
1878                 errno = saveerrno;
1879                 /*@=mods@*/
1880                 if (S_ISDIR(ost->st_mode))      return 0;
1881             }
1882         } else if (S_ISLNK(st->st_mode)) {
1883             if (S_ISLNK(ost->st_mode)) {
1884         /* XXX NUL terminated result in fsm->rdbuf, len in fsm->rdnb. */
1885                 rc = fsmStage(fsm, FSM_READLINK);
1886                 /*@-mods@*/
1887                 errno = saveerrno;
1888                 /*@=mods@*/
1889                 if (rc) break;
1890                 if (!strcmp(fsm->opath, fsm->rdbuf))    return 0;
1891             }
1892         } else if (S_ISFIFO(st->st_mode)) {
1893             if (S_ISFIFO(ost->st_mode))         return 0;
1894         } else if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode)) {
1895             if ((S_ISCHR(ost->st_mode) || S_ISBLK(ost->st_mode)) &&
1896                 (ost->st_rdev == st->st_rdev))  return 0;
1897         } else if (S_ISSOCK(st->st_mode)) {
1898             if (S_ISSOCK(ost->st_mode))         return 0;
1899         }
1900             /* XXX shouldn't do this with commit/undo. */
1901         rc = 0;
1902         if (fsm->stage == FSM_PROCESS) rc = fsmStage(fsm, FSM_UNLINK);
1903         if (rc == 0)    rc = CPIOERR_LSTAT_FAILED;
1904         return (rc ? rc : CPIOERR_LSTAT_FAILED);        /* XXX HACK */
1905         /*@notreached@*/ break;
1906
1907     case FSM_UNLINK:
1908         rc = Unlink(fsm->path);
1909         if (_fsm_debug && (stage & FSM_SYSCALL))
1910             rpmMessage(RPMMESS_DEBUG, " %8s (%s) %s\n", cur,
1911                 fsm->path, (rc < 0 ? strerror(errno) : ""));
1912         if (rc < 0)     rc = CPIOERR_UNLINK_FAILED;
1913         break;
1914     case FSM_RENAME:
1915         rc = Rename(fsm->opath, fsm->path);
1916         if (_fsm_debug && (stage & FSM_SYSCALL))
1917             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %s) %s\n", cur,
1918                 fsm->opath, fsm->path, (rc < 0 ? strerror(errno) : ""));
1919         if (rc < 0)     rc = CPIOERR_RENAME_FAILED;
1920         break;
1921     case FSM_MKDIR:
1922         rc = Mkdir(fsm->path, (st->st_mode & 07777));
1923         if (_fsm_debug && (stage & FSM_SYSCALL))
1924             rpmMessage(RPMMESS_DEBUG, " %8s (%s, 0%04o) %s\n", cur,
1925                 fsm->path, (unsigned)(st->st_mode & 07777),
1926                 (rc < 0 ? strerror(errno) : ""));
1927         if (rc < 0)     rc = CPIOERR_MKDIR_FAILED;
1928         break;
1929     case FSM_RMDIR:
1930         rc = Rmdir(fsm->path);
1931         if (_fsm_debug && (stage & FSM_SYSCALL))
1932             rpmMessage(RPMMESS_DEBUG, " %8s (%s) %s\n", cur,
1933                 fsm->path, (rc < 0 ? strerror(errno) : ""));
1934         if (rc < 0)     rc = CPIOERR_RMDIR_FAILED;
1935         break;
1936     case FSM_CHOWN:
1937         rc = chown(fsm->path, st->st_uid, st->st_gid);
1938         if (_fsm_debug && (stage & FSM_SYSCALL))
1939             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %d, %d) %s\n", cur,
1940                 fsm->path, (int)st->st_uid, (int)st->st_gid,
1941                 (rc < 0 ? strerror(errno) : ""));
1942         if (rc < 0)     rc = CPIOERR_CHOWN_FAILED;
1943         break;
1944     case FSM_LCHOWN:
1945 #if ! CHOWN_FOLLOWS_SYMLINK
1946         rc = lchown(fsm->path, st->st_uid, st->st_gid);
1947         if (_fsm_debug && (stage & FSM_SYSCALL))
1948             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %d, %d) %s\n", cur,
1949                 fsm->path, (int)st->st_uid, (int)st->st_gid,
1950                 (rc < 0 ? strerror(errno) : ""));
1951         if (rc < 0)     rc = CPIOERR_CHOWN_FAILED;
1952 #endif
1953         break;
1954     case FSM_CHMOD:
1955         rc = chmod(fsm->path, (st->st_mode & 07777));
1956         if (_fsm_debug && (stage & FSM_SYSCALL))
1957             rpmMessage(RPMMESS_DEBUG, " %8s (%s, 0%04o) %s\n", cur,
1958                 fsm->path, (unsigned)(st->st_mode & 07777),
1959                 (rc < 0 ? strerror(errno) : ""));
1960         if (rc < 0)     rc = CPIOERR_CHMOD_FAILED;
1961         break;
1962     case FSM_UTIME:
1963         {   struct utimbuf stamp;
1964             stamp.actime = st->st_mtime;
1965             stamp.modtime = st->st_mtime;
1966             rc = utime(fsm->path, &stamp);
1967             if (_fsm_debug && (stage & FSM_SYSCALL))
1968                 rpmMessage(RPMMESS_DEBUG, " %8s (%s, 0x%x) %s\n", cur,
1969                         fsm->path, (unsigned)st->st_mtime,
1970                         (rc < 0 ? strerror(errno) : ""));
1971             if (rc < 0) rc = CPIOERR_UTIME_FAILED;
1972         }
1973         break;
1974     case FSM_SYMLINK:
1975         rc = symlink(fsm->opath, fsm->path);
1976         if (_fsm_debug && (stage & FSM_SYSCALL))
1977             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %s) %s\n", cur,
1978                 fsm->opath, fsm->path, (rc < 0 ? strerror(errno) : ""));
1979         if (rc < 0)     rc = CPIOERR_SYMLINK_FAILED;
1980         break;
1981     case FSM_LINK:
1982         rc = Link(fsm->opath, fsm->path);
1983         if (_fsm_debug && (stage & FSM_SYSCALL))
1984             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %s) %s\n", cur,
1985                 fsm->opath, fsm->path, (rc < 0 ? strerror(errno) : ""));
1986         if (rc < 0)     rc = CPIOERR_LINK_FAILED;
1987         break;
1988     case FSM_MKFIFO:
1989         rc = mkfifo(fsm->path, (st->st_mode & 07777));
1990         if (_fsm_debug && (stage & FSM_SYSCALL))
1991             rpmMessage(RPMMESS_DEBUG, " %8s (%s, 0%04o) %s\n", cur,
1992                 fsm->path, (unsigned)(st->st_mode & 07777),
1993                 (rc < 0 ? strerror(errno) : ""));
1994         if (rc < 0)     rc = CPIOERR_MKFIFO_FAILED;
1995         break;
1996     case FSM_MKNOD:
1997         /*@-unrecog -portability @*/ /* FIX: check S_IFIFO or dev != 0 */
1998         rc = mknod(fsm->path, (st->st_mode & ~07777), st->st_rdev);
1999         /*@=unrecog =portability @*/
2000         if (_fsm_debug && (stage & FSM_SYSCALL))
2001             rpmMessage(RPMMESS_DEBUG, " %8s (%s, 0%o, 0x%x) %s\n", cur,
2002                 fsm->path, (unsigned)(st->st_mode & ~07777),
2003                 (unsigned)st->st_rdev,
2004                 (rc < 0 ? strerror(errno) : ""));
2005         if (rc < 0)     rc = CPIOERR_MKNOD_FAILED;
2006         break;
2007     case FSM_LSTAT:
2008         rc = Lstat(fsm->path, ost);
2009         if (_fsm_debug && (stage & FSM_SYSCALL) && rc && errno != ENOENT)
2010             rpmMessage(RPMMESS_DEBUG, " %8s (%s, ost) %s\n", cur,
2011                 fsm->path, (rc < 0 ? strerror(errno) : ""));
2012         if (rc < 0)     rc = CPIOERR_LSTAT_FAILED;
2013         break;
2014     case FSM_STAT:
2015         rc = Stat(fsm->path, ost);
2016         if (_fsm_debug && (stage & FSM_SYSCALL) && rc && errno != ENOENT)
2017             rpmMessage(RPMMESS_DEBUG, " %8s (%s, ost) %s\n", cur,
2018                 fsm->path, (rc < 0 ? strerror(errno) : ""));
2019         if (rc < 0)     rc = CPIOERR_STAT_FAILED;
2020         break;
2021     case FSM_READLINK:
2022         /* XXX NUL terminated result in fsm->rdbuf, len in fsm->rdnb. */
2023         rc = Readlink(fsm->path, fsm->rdbuf, fsm->rdsize - 1);
2024         if (_fsm_debug && (stage & FSM_SYSCALL))
2025             rpmMessage(RPMMESS_DEBUG, " %8s (%s, rdbuf, %d) %s\n", cur,
2026                 fsm->path, (int)(fsm->rdsize -1), (rc < 0 ? strerror(errno) : ""));
2027         if (rc < 0)     rc = CPIOERR_READLINK_FAILED;
2028         else {
2029             fsm->rdnb = rc;
2030             fsm->rdbuf[fsm->rdnb] = '\0';
2031             rc = 0;
2032         }
2033         break;
2034     case FSM_CHROOT:
2035         break;
2036
2037     case FSM_NEXT:
2038         rc = fsmStage(fsm, FSM_HREAD);
2039         if (rc) break;
2040         if (!strcmp(fsm->path, CPIO_TRAILER)) { /* Detect end-of-payload. */
2041             fsm->path = _free(fsm->path);
2042             rc = CPIOERR_HDR_TRAILER;
2043         }
2044         if (!rc)
2045             rc = fsmStage(fsm, FSM_POS);
2046         break;
2047     case FSM_EAT:
2048         for (left = st->st_size; left > 0; left -= fsm->rdnb) {
2049             fsm->wrlen = (left > fsm->wrsize ? fsm->wrsize : left);
2050             rc = fsmStage(fsm, FSM_DREAD);
2051             if (rc)
2052                 /*@loopbreak@*/ break;
2053         }
2054         break;
2055     case FSM_POS:
2056         left = (modulo - (fdGetCpioPos(fsm->cfd) % modulo)) % modulo;
2057         if (left) {
2058             fsm->wrlen = left;
2059             (void) fsmStage(fsm, FSM_DREAD);
2060         }
2061         break;
2062     case FSM_PAD:
2063         left = (modulo - (fdGetCpioPos(fsm->cfd) % modulo)) % modulo;
2064         if (left) {
2065             memset(fsm->rdbuf, 0, left);
2066             /* XXX DWRITE uses rdnb for I/O length. */
2067             fsm->rdnb = left;
2068             (void) fsmStage(fsm, FSM_DWRITE);
2069         }
2070         break;
2071     case FSM_TRAILER:
2072         rc = cpioTrailerWrite(fsm);
2073         break;
2074     case FSM_HREAD:
2075         rc = fsmStage(fsm, FSM_POS);
2076         if (!rc)
2077             rc = cpioHeaderRead(fsm, st);       /* Read next payload header. */
2078         break;
2079     case FSM_HWRITE:
2080         rc = cpioHeaderWrite(fsm, st);          /* Write next payload header. */
2081         break;
2082     case FSM_DREAD:
2083         fsm->rdnb = Fread(fsm->wrbuf, sizeof(*fsm->wrbuf), fsm->wrlen, fsm->cfd);
2084         if (_fsm_debug && (stage & FSM_SYSCALL))
2085             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %d, cfd)\trdnb %d\n",
2086                 cur, (fsm->wrbuf == fsm->wrb ? "wrbuf" : "mmap"),
2087                 (int)fsm->wrlen, (int)fsm->rdnb);
2088         if (fsm->rdnb != fsm->wrlen || Ferror(fsm->cfd))
2089             rc = CPIOERR_READ_FAILED;
2090         if (fsm->rdnb > 0)
2091             fdSetCpioPos(fsm->cfd, fdGetCpioPos(fsm->cfd) + fsm->rdnb);
2092         break;
2093     case FSM_DWRITE:
2094         fsm->wrnb = Fwrite(fsm->rdbuf, sizeof(*fsm->rdbuf), fsm->rdnb, fsm->cfd);
2095         if (_fsm_debug && (stage & FSM_SYSCALL))
2096             rpmMessage(RPMMESS_DEBUG, " %8s (%s, %d, cfd)\twrnb %d\n",
2097                 cur, (fsm->rdbuf == fsm->rdb ? "rdbuf" : "mmap"),
2098                 (int)fsm->rdnb, (int)fsm->wrnb);
2099         if (fsm->rdnb != fsm->wrnb || Ferror(fsm->cfd))
2100             rc = CPIOERR_WRITE_FAILED;
2101         if (fsm->wrnb > 0)
2102             fdSetCpioPos(fsm->cfd, fdGetCpioPos(fsm->cfd) + fsm->wrnb);
2103         break;
2104
2105     case FSM_ROPEN:
2106         fsm->rfd = Fopen(fsm->path, "r.ufdio");
2107         if (fsm->rfd == NULL || Ferror(fsm->rfd)) {
2108             if (fsm->rfd)       (void) fsmStage(fsm, FSM_RCLOSE);
2109             fsm->rfd = NULL;
2110             rc = CPIOERR_OPEN_FAILED;
2111             break;
2112         }
2113         if (_fsm_debug && (stage & FSM_SYSCALL))
2114             rpmMessage(RPMMESS_DEBUG, " %8s (%s, \"r\") rfd %p rdbuf %p\n", cur,
2115                 fsm->path, fsm->rfd, fsm->rdbuf);
2116         break;
2117     case FSM_READ:
2118         fsm->rdnb = Fread(fsm->rdbuf, sizeof(*fsm->rdbuf), fsm->rdlen, fsm->rfd);
2119         if (_fsm_debug && (stage & FSM_SYSCALL))
2120             rpmMessage(RPMMESS_DEBUG, " %8s (rdbuf, %d, rfd)\trdnb %d\n",
2121                 cur, (int)fsm->rdlen, (int)fsm->rdnb);
2122         if (fsm->rdnb != fsm->rdlen || Ferror(fsm->rfd))
2123             rc = CPIOERR_READ_FAILED;
2124         break;
2125     case FSM_RCLOSE:
2126         if (fsm->rfd) {
2127             if (_fsm_debug && (stage & FSM_SYSCALL))
2128                 rpmMessage(RPMMESS_DEBUG, " %8s (%p)\n", cur, fsm->rfd);
2129             (void) Fclose(fsm->rfd);
2130             /*@-mods@*/
2131             errno = saveerrno;
2132             /*@=mods@*/
2133         }
2134         fsm->rfd = NULL;
2135         break;
2136     case FSM_WOPEN:
2137         fsm->wfd = Fopen(fsm->path, "w.ufdio");
2138         if (fsm->wfd == NULL || Ferror(fsm->wfd)) {
2139             if (fsm->wfd)       (void) fsmStage(fsm, FSM_WCLOSE);
2140             fsm->wfd = NULL;
2141             rc = CPIOERR_OPEN_FAILED;
2142         }
2143         if (_fsm_debug && (stage & FSM_SYSCALL))
2144             rpmMessage(RPMMESS_DEBUG, " %8s (%s, \"w\") wfd %p wrbuf %p\n", cur,
2145                 fsm->path, fsm->wfd, fsm->wrbuf);
2146         break;
2147     case FSM_WRITE:
2148         fsm->wrnb = Fwrite(fsm->wrbuf, sizeof(*fsm->wrbuf), fsm->rdnb, fsm->wfd);
2149         if (_fsm_debug && (stage & FSM_SYSCALL))
2150             rpmMessage(RPMMESS_DEBUG, " %8s (wrbuf, %d, wfd)\twrnb %d\n",
2151                 cur, (int)fsm->rdnb, (int)fsm->wrnb);
2152         if (fsm->rdnb != fsm->wrnb || Ferror(fsm->wfd))
2153             rc = CPIOERR_WRITE_FAILED;
2154         break;
2155     case FSM_WCLOSE:
2156         if (fsm->wfd) {
2157             if (_fsm_debug && (stage & FSM_SYSCALL))
2158                 rpmMessage(RPMMESS_DEBUG, " %8s (%p)\n", cur, fsm->wfd);
2159             (void) Fclose(fsm->wfd);
2160             /*@-mods@*/
2161             errno = saveerrno;
2162             /*@=mods@*/
2163         }
2164         fsm->wfd = NULL;
2165         break;
2166
2167     default:
2168         break;
2169     }
2170     /*@=branchstate@*/
2171
2172     if (!(stage & FSM_INTERNAL)) {
2173         fsm->rc = (rc == CPIOERR_HDR_TRAILER ? 0 : rc);
2174     }
2175     return rc;
2176 }
2177 /*@=compmempass@*/
2178
2179 /*@obserever@*/ const char *const fileActionString(fileAction a)
2180 {
2181     switch (a) {
2182     case FA_UNKNOWN:    return "unknown";
2183     case FA_CREATE:     return "create";
2184     case FA_COPYOUT:    return "copyout";
2185     case FA_COPYIN:     return "copyin";
2186     case FA_BACKUP:     return "backup";
2187     case FA_SAVE:       return "save";
2188     case FA_SKIP:       return "skip";
2189     case FA_ALTNAME:    return "altname";
2190     case FA_ERASE:      return "erase";
2191     case FA_SKIPNSTATE: return "skipnstate";
2192     case FA_SKIPNETSHARED: return "skipnetshared";
2193     case FA_SKIPMULTILIB: return "skipmultilib";
2194     default:            return "???";
2195     }
2196     /*@notreached@*/
2197 }
2198
2199 /*@observer@*/ const char *const fileStageString(fileStage a) {
2200     switch(a) {
2201     case FSM_UNKNOWN:   return "unknown";
2202
2203     case FSM_PKGINSTALL:return "INSTALL";
2204     case FSM_PKGERASE:  return "ERASE";
2205     case FSM_PKGBUILD:  return "BUILD";
2206     case FSM_PKGCOMMIT: return "COMMIT";
2207     case FSM_PKGUNDO:   return "UNDO";
2208
2209     case FSM_CREATE:    return "create";
2210     case FSM_INIT:      return "init";
2211     case FSM_MAP:       return "map";
2212     case FSM_MKDIRS:    return "mkdirs";
2213     case FSM_RMDIRS:    return "rmdirs";
2214     case FSM_PRE:       return "pre";
2215     case FSM_PROCESS:   return "process";
2216     case FSM_POST:      return "post";
2217     case FSM_MKLINKS:   return "mklinks";
2218     case FSM_NOTIFY:    return "notify";
2219     case FSM_UNDO:      return "undo";
2220     case FSM_FINI:      return "fini";
2221     case FSM_COMMIT:    return "commit";
2222     case FSM_DESTROY:   return "destroy";
2223     case FSM_VERIFY:    return "verify";
2224
2225     case FSM_UNLINK:    return "Unlink";
2226     case FSM_RENAME:    return "Rename";
2227     case FSM_MKDIR:     return "Mkdir";
2228     case FSM_RMDIR:     return "rmdir";
2229     case FSM_CHOWN:     return "chown";
2230     case FSM_LCHOWN:    return "lchown";
2231     case FSM_CHMOD:     return "chmod";
2232     case FSM_UTIME:     return "utime";
2233     case FSM_SYMLINK:   return "symlink";
2234     case FSM_LINK:      return "Link";
2235     case FSM_MKFIFO:    return "mkfifo";
2236     case FSM_MKNOD:     return "mknod";
2237     case FSM_LSTAT:     return "Lstat";
2238     case FSM_STAT:      return "Stat";
2239     case FSM_READLINK:  return "Readlink";
2240     case FSM_CHROOT:    return "chroot";
2241
2242     case FSM_NEXT:      return "next";
2243     case FSM_EAT:       return "eat";
2244     case FSM_POS:       return "pos";
2245     case FSM_PAD:       return "pad";
2246     case FSM_TRAILER:   return "trailer";
2247     case FSM_HREAD:     return "hread";
2248     case FSM_HWRITE:    return "hwrite";
2249     case FSM_DREAD:     return "Fread";
2250     case FSM_DWRITE:    return "Fwrite";
2251
2252     case FSM_ROPEN:     return "Fopen";
2253     case FSM_READ:      return "Fread";
2254     case FSM_RCLOSE:    return "Fclose";
2255     case FSM_WOPEN:     return "Fopen";
2256     case FSM_WRITE:     return "Fwrite";
2257     case FSM_WCLOSE:    return "Fclose";
2258
2259     default:            return "???";
2260     }
2261     /*@noteached@*/
2262 }