2 * wrappers around low-level operations to provide a simpler interface
3 * to the operations that Lisp (and some contributed modules) needs.
5 * The functions in this file are typically called directly from Lisp.
6 * Thus, when their signature changes, they don't need updates in a .h
7 * file somewhere, but they do need updates in the Lisp code. FIXME:
8 * It would be nice to enforce this at compile time. It mighn't even
9 * be all that hard: make the cross-compiler versions of DEFINE-ALIEN-FOO
10 * macros accumulate strings in a list which then gets written out at
11 * the end of sbcl2.h at the end of cross-compilation, then rerun
12 * 'make' in src/runtime/ using the new sbcl2.h as sbcl.h (and make
13 * sure that all the files in src/runtime/ include sbcl.h). */
16 * This software is part of the SBCL system. See the README file for
19 * This software is derived from the CMU CL system, which was
20 * written at Carnegie Mellon University and released into the
21 * public domain. The software is in the public domain and is
22 * provided with absolutely no warranty. See the COPYING and CREDITS
23 * files for more information.
28 #include <sys/types.h>
39 #ifndef LISP_FEATURE_WIN32
46 #if defined(LISP_FEATURE_WIN32)
47 #define WIN32_LEAN_AND_MEAN
55 /* Although it might seem as though this should be in some standard
56 Unix header, according to Perry E. Metzger, in a message on
57 sbcl-devel dated 2004-03-29, this is the POSIXly-correct way of
58 using environ: by an explicit declaration. -- CSR, 2004-03-30 */
59 extern char **environ
;
62 * stuff needed by CL:DIRECTORY and other Lisp directory operations
70 #ifndef LISP_FEATURE_WIN32
71 /* a wrapped version of readlink(2):
72 * -- If path isn't a symlink, or is a broken symlink, return 0.
73 * -- If path is a symlink, return a newly allocated string holding
74 * the thing it's linked to. */
76 wrapped_readlink(char *path
)
78 int bufsiz
= strlen(path
) + 16;
80 char *result
= malloc(bufsiz
);
81 int n_read
= readlink(path
, result
, bufsiz
);
85 } else if (n_read
< bufsiz
) {
97 * realpath(3), including a wrapper for Windows.
99 char * sb_realpath (char *path
)
101 #ifndef LISP_FEATURE_WIN32
105 if ((ret
= calloc(PATH_MAX
, sizeof(char))) == NULL
)
107 if (realpath(path
, ret
) == NULL
) {
119 if ((ret
= calloc(MAX_PATH
, sizeof(char))) == NULL
)
121 if (GetFullPathName(path
, MAX_PATH
, ret
, cp
) == 0) {
131 /* readdir, closedir, and dirent name accessor. The first three are not strictly
132 * necessary, but should save us some #!+netbsd in the build, and this also allows
133 * building Windows versions using the non-ANSI variants of FindFirstFile &co
134 * under the same API. (Use a structure that appends the handle to the WIN32_FIND_DATA
135 * as the return value from sb_opendir, on sb_readdir grab the name from the previous
136 * call and save the new one.) Nikodemus thought he would have to do that to support
137 * DIRECTORY on UNC paths, but turns out opendir &co do TRT on Windows already -- so
138 * leaving that bit of tedium for a later date, once we figure out the whole *A vs. *W
139 * issue out properly. ...FIXME, obviously, as per above.
141 * Once that is done, the lisp side functions are best named OS-OPENDIR, etc.
144 sb_opendir(char * name
)
146 return opendir(name
);
149 extern struct dirent
*
150 sb_readdir(DIR * dirp
)
152 return readdir(dirp
);
156 sb_closedir(DIR * dirp
)
158 return closedir(dirp
);
162 sb_dirent_name(struct dirent
* ent
)
172 copy_to_stat_wrapper(struct stat_wrapper
*to
, struct stat
*from
)
174 #define FROB(stem) to->wrapped_st_##stem = from->st_##stem
175 #ifndef LISP_FEATURE_WIN32
176 #define FROB2(stem) to->wrapped_st_##stem = from->st_##stem
178 #define FROB2(stem) to->wrapped_st_##stem = 0;
197 stat_wrapper(const char *file_name
, struct stat_wrapper
*buf
)
199 struct stat real_buf
;
202 #ifdef LISP_FEATURE_WIN32
204 * Windows won't match the last component of a pathname if there
205 * is a trailing #\/ or #\\, except if it's <drive>:\ or <drive>:/
206 * in which case it behaves the other way around. So we remove the
207 * trailing directory separator unless we are being passed just a
208 * drive name (e.g. "c:\\"). Some, but not all, of this
209 * strangeness is documented at Microsoft's support site (as of
211 * <http://support.microsoft.com/default.aspx?scid=kb;en-us;168439>)
213 char file_buf
[MAX_PATH
];
214 strcpy(file_buf
, file_name
);
215 int len
= strlen(file_name
);
216 if (len
!= 0 && (file_name
[len
-1] == '/' || file_name
[len
-1] == '\\') &&
217 !(len
== 3 && file_name
[1] == ':' && isalpha(file_name
[0])))
218 file_buf
[len
-1] = '\0';
219 file_name
= file_buf
;
222 if ((ret
= stat(file_name
,&real_buf
)) >= 0)
223 copy_to_stat_wrapper(buf
, &real_buf
);
227 #ifndef LISP_FEATURE_WIN32
229 lstat_wrapper(const char *file_name
, struct stat_wrapper
*buf
)
231 struct stat real_buf
;
233 if ((ret
= lstat(file_name
,&real_buf
)) >= 0)
234 copy_to_stat_wrapper(buf
, &real_buf
);
238 /* cleaner to do it here than in Lisp */
239 int lstat_wrapper(const char *file_name
, struct stat_wrapper
*buf
)
241 return stat_wrapper(file_name
, buf
);
246 fstat_wrapper(int filedes
, struct stat_wrapper
*buf
)
248 struct stat real_buf
;
250 if ((ret
= fstat(filedes
,&real_buf
)) >= 0)
251 copy_to_stat_wrapper(buf
, &real_buf
);
255 /* A wrapper for mkstemp(3), for two reasons: (1) mkstemp does not
256 exist on Windows; (2) by passing down a mode_t, we don't need a
257 binding to chmod in SB-UNIX, and need not concern ourselves with
258 umask issues if we want to use mkstemp to make new files in
260 int sb_mkstemp (char *template, mode_t mode
) {
261 #ifdef LISP_FEATURE_WIN32
262 #define PATHNAME_BUFFER_SIZE MAX_PATH
263 #define MKTEMP _mktemp
265 #define PATHNAME_BUFFER_SIZE PATH_MAX
266 #define MKTEMP mktemp
269 char buf
[PATHNAME_BUFFER_SIZE
];
272 /* Fruit fallen from the tree: for people who like
273 microoptimizations, we might not need to copy the whole
274 template on every loop, but only the last several characters.
275 But I didn't feel like testing the boundary cases in Windows's
277 strncpy(buf
, template, PATHNAME_BUFFER_SIZE
);
278 buf
[PATHNAME_BUFFER_SIZE
-1]=0; /* force NULL-termination */
280 if ((fd
=open(buf
, O_CREAT
|O_EXCL
|O_RDWR
, mode
))!=-1) {
281 strcpy(template, buf
);
290 #undef PATHNAME_BUFFER_SIZE
298 #ifndef LISP_FEATURE_WIN32
299 /* Return a newly-allocated string holding the username for "uid", or
300 * NULL if there's no such user.
302 * KLUDGE: We also return NULL if malloc() runs out of memory
303 * (returning strdup() result) since it's not clear how to handle that
304 * error better. -- WHN 2001-12-28 */
306 uid_username(int uid
)
308 struct passwd
*p
= getpwuid(uid
);
310 /* The object *p is a static struct which'll be overwritten by
311 * the next call to getpwuid(), so it'd be unsafe to return
312 * p->pw_name without copying. */
313 return strdup(p
->pw_name
);
320 uid_homedir(uid_t uid
)
322 struct passwd
*p
= getpwuid(uid
);
324 /* Let's be careful about this, shall we? */
325 size_t len
= strlen(p
->pw_dir
);
326 if (p
->pw_dir
[len
-1] == '/') {
327 return strdup(p
->pw_dir
);
329 char *result
= malloc(len
+ 2);
331 unsigned int nchars
= sprintf(result
,"%s/",p
->pw_dir
);
332 if (nchars
== len
+ 1) {
345 #endif /* !LISP_FEATURE_WIN32 */
348 * functions to get miscellaneous C-level variables
350 * (Doing this by calling functions lets us borrow the smarts of the C
351 * linker, so that things don't blow up when libc versions and thus
352 * variable locations change between compile time and run time.)
361 #ifdef LISP_FEATURE_WIN32
365 * faked-up implementation of select(). Right now just enough to get through
368 int select(int top_fd
, DWORD
*read_set
, DWORD
*write_set
, DWORD
*except_set
, time_t *timeout
)
371 * FIXME: Going forward, we may want to use MsgWaitForMultipleObjects
372 * in order to support a windows message loop inside serve-event.
374 HANDLE handles
[MAXIMUM_WAIT_OBJECTS
];
375 int fds
[MAXIMUM_WAIT_OBJECTS
];
384 for (i
= 0; i
< top_fd
; i
++) {
385 if (except_set
) except_set
[i
>> 5] = 0;
386 if (write_set
&& (write_set
[i
>> 5] & (1 << (i
& 31)))) polling_write
= 1;
387 if (read_set
[i
>> 5] & (1 << (i
& 31))) {
388 read_set
[i
>> 5] &= ~(1 << (i
& 31));
389 fds
[num_handles
] = i
;
390 handles
[num_handles
++] = (HANDLE
) _get_osfhandle(i
);
394 win_timeout
= INFINITE
;
395 if (timeout
) win_timeout
= (timeout
[0] * 1000) + timeout
[1];
397 /* Last parameter here is timeout in milliseconds. */
398 /* retval = WaitForMultipleObjects(num_handles, handles, 0, INFINITE); */
399 retval
= WaitForMultipleObjects(num_handles
, handles
, 0, win_timeout
);
401 if (retval
< WAIT_ABANDONED
) {
402 /* retval, at this point, is the index of the single live HANDLE/fd. */
403 read_set
[fds
[retval
] >> 5] |= (1 << (fds
[retval
] & 31));
406 return polling_write
;
410 * Windows doesn't have gettimeofday(), and we need it for the compiler,
411 * for serve-event, and for a couple other things. We don't need a timezone
412 * yet, however, and the closest we can easily get to a timeval is the
413 * seconds part. So that's what we do.
415 int gettimeofday(long *timeval
, long *timezone
)
417 timeval
[0] = time(NULL
);
425 /* We will need to define these things or their equivalents for Win32
426 eventually, but for now let's get it working for everyone else. */
427 #ifndef LISP_FEATURE_WIN32
428 /* From SB-BSD-SOCKETS, to get h_errno */
434 /* From SB-POSIX, wait-macros */
435 int wifexited(int status
) {
436 return WIFEXITED(status
);
438 int wexitstatus(int status
) {
439 return WEXITSTATUS(status
);
441 int wifsignaled(int status
) {
442 return WIFSIGNALED(status
);
444 int wtermsig(int status
) {
445 return WTERMSIG(status
);
447 int wifstopped(int status
) {
448 return WIFSTOPPED(status
);
450 int wstopsig(int status
) {
451 return WSTOPSIG(status
);
453 /* FIXME: POSIX also defines WIFCONTINUED, but that appears not to
454 exist on at least Linux... */
455 #endif /* !LISP_FEATURE_WIN32 */
457 /* From SB-POSIX, stat-macros */
458 int s_isreg(mode_t mode
)
460 return S_ISREG(mode
);
462 int s_isdir(mode_t mode
)
464 return S_ISDIR(mode
);
466 int s_ischr(mode_t mode
)
468 return S_ISCHR(mode
);
470 int s_isblk(mode_t mode
)
472 return S_ISBLK(mode
);
474 int s_isfifo(mode_t mode
)
476 return S_ISFIFO(mode
);
478 #ifndef LISP_FEATURE_WIN32
479 int s_islnk(mode_t mode
)
482 return S_ISLNK(mode
);
484 return ((mode
& S_IFMT
) == S_IFLNK
);
487 int s_issock(mode_t mode
)
490 return S_ISSOCK(mode
);
492 return ((mode
& S_IFMT
) == S_IFSOCK
);
495 #endif /* !LISP_FEATURE_WIN32 */