2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
17 * Routines for managing the "play pen".
21 #include <sys/cdefs.h>
22 __FBSDID("$FreeBSD$");
28 #include <sys/signal.h>
29 #include <sys/param.h>
30 #include <sys/mount.h>
32 /* For keeping track of where we are */
33 static char PenLocation
[FILENAME_MAX
];
34 static char Previous
[FILENAME_MAX
];
42 /* Find a good place to play. */
44 find_play_pen(char *pen
, off_t sz
)
50 if (pen
[0] && isdir(dirname(pen
)) == TRUE
&& (min_free(dirname(pen
)) >= sz
))
52 else if ((cp
= getenv("PKG_TMPDIR")) != NULL
&& stat(cp
, &sb
) != FAIL
&& (min_free(cp
) >= sz
))
53 sprintf(pen
, "%s/instmp.XXXXXX", cp
);
54 else if ((cp
= getenv("TMPDIR")) != NULL
&& stat(cp
, &sb
) != FAIL
&& (min_free(cp
) >= sz
))
55 sprintf(pen
, "%s/instmp.XXXXXX", cp
);
56 else if (stat("/var/tmp", &sb
) != FAIL
&& min_free("/var/tmp") >= sz
)
57 strcpy(pen
, "/var/tmp/instmp.XXXXXX");
58 else if (stat("/tmp", &sb
) != FAIL
&& min_free("/tmp") >= sz
)
59 strcpy(pen
, "/tmp/instmp.XXXXXX");
60 else if ((stat("/usr/tmp", &sb
) == SUCCESS
|| mkdir("/usr/tmp", 01777) == SUCCESS
) && min_free("/usr/tmp") >= sz
)
61 strcpy(pen
, "/usr/tmp/instmp.XXXXXX");
64 humanize_number(humbuf
, sizeof humbuf
, sz
, "", HN_AUTOSCALE
,
67 "%s: can't find enough temporary space to extract the files, please set your\n"
68 "PKG_TMPDIR environment variable to a location with at least %s bytes\n"
69 "free", __func__
, humbuf
);
76 static char *pstack
[MAX_STACK
];
77 static int pdepth
= -1;
80 pushPen(const char *pen
)
82 if (++pdepth
== MAX_STACK
)
83 errx(2, "%s: stack overflow.\n", __func__
);
84 pstack
[pdepth
] = strdup(pen
);
94 strcpy(pen
, pstack
[pdepth
]);
95 free(pstack
[pdepth
--]);
99 * Make a temporary directory to play in and chdir() to it, returning
100 * pathname of previous working directory.
103 make_playpen(char *pen
, off_t sz
)
105 char humbuf1
[6], humbuf2
[6];
107 if (!find_play_pen(pen
, sz
))
112 errx(2, "%s: can't mktemp '%s'", __func__
, pen
);
114 if (chmod(pen
, 0700) == FAIL
) {
116 errx(2, "%s: can't mkdir '%s'", __func__
, pen
);
121 humanize_number(humbuf1
, sizeof humbuf1
, sz
, "", HN_AUTOSCALE
,
123 humanize_number(humbuf2
, sizeof humbuf2
, min_free(pen
),
124 "", HN_AUTOSCALE
, HN_NOSPACE
);
125 fprintf(stderr
, "Requested space: %s bytes, free space: %s bytes in %s\n", humbuf1
, humbuf2
, pen
);
129 if (min_free(pen
) < sz
) {
132 errx(2, "%s: not enough free space to create '%s'.\n"
133 "Please set your PKG_TMPDIR environment variable to a location\n"
134 "with more space and\ntry the command again", __func__
, pen
);
137 if (!getcwd(Previous
, FILENAME_MAX
)) {
142 if (chdir(pen
) == FAIL
) {
144 errx(2, "%s: can't chdir to '%s'", __func__
, pen
);
148 pushPen(PenLocation
);
150 strcpy(PenLocation
, pen
);
154 /* Convenience routine for getting out of playpen */
160 /* Don't interrupt while we're cleaning up */
161 oldsig
= signal(SIGINT
, SIG_IGN
);
163 if (chdir(Previous
) == FAIL
) {
165 errx(2, "%s: can't chdir back to '%s'", __func__
, Previous
);
169 if (PenLocation
[0]) {
170 if (PenLocation
[0] == '/' && vsystem("/bin/rm -rf %s", PenLocation
))
171 warnx("couldn't remove temporary dir '%s'", PenLocation
);
174 signal(SIGINT
, oldsig
);
178 min_free(const char *tmpdir
)
182 if (statfs(tmpdir
, &buf
) != 0) {
186 return (off_t
)buf
.f_bavail
* (off_t
)buf
.f_bsize
;