2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
11 #include <sys/types.h>
13 #include <sys/socket.h>
15 #include <sys/ioctl.h>
16 #include <sys/mount.h>
20 #include "kern_util.h"
22 static void copy_stat(struct uml_stat
*dst
, struct stat64
*src
)
24 *dst
= ((struct uml_stat
) {
25 .ust_dev
= src
->st_dev
, /* device */
26 .ust_ino
= src
->st_ino
, /* inode */
27 .ust_mode
= src
->st_mode
, /* protection */
28 .ust_nlink
= src
->st_nlink
, /* number of hard links */
29 .ust_uid
= src
->st_uid
, /* user ID of owner */
30 .ust_gid
= src
->st_gid
, /* group ID of owner */
31 .ust_size
= src
->st_size
, /* total size, in bytes */
32 .ust_blksize
= src
->st_blksize
, /* blocksize for filesys I/O */
33 .ust_blocks
= src
->st_blocks
, /* number of blocks allocated */
34 .ust_atime
= src
->st_atime
, /* time of last access */
35 .ust_mtime
= src
->st_mtime
, /* time of last modification */
36 .ust_ctime
= src
->st_ctime
, /* time of last change */
40 int os_stat_fd(const int fd
, struct uml_stat
*ubuf
)
46 err
= fstat64(fd
, &sbuf
);
47 } while((err
< 0) && (errno
== EINTR
)) ;
53 copy_stat(ubuf
, &sbuf
);
57 int os_stat_file(const char *file_name
, struct uml_stat
*ubuf
)
63 err
= stat64(file_name
, &sbuf
);
64 } while((err
< 0) && (errno
== EINTR
)) ;
70 copy_stat(ubuf
, &sbuf
);
74 int os_access(const char* file
, int mode
)
78 amode
=(mode
&OS_ACC_R_OK
? R_OK
: 0) | (mode
&OS_ACC_W_OK
? W_OK
: 0) |
79 (mode
&OS_ACC_X_OK
? X_OK
: 0) | (mode
&OS_ACC_F_OK
? F_OK
: 0) ;
81 err
= access(file
, amode
);
88 void os_print_error(int error
, const char* str
)
90 errno
= error
< 0 ? -error
: error
;
95 /* FIXME? required only by hostaudio (because it passes ioctls verbatim) */
96 int os_ioctl_generic(int fd
, unsigned int cmd
, unsigned long arg
)
100 err
= ioctl(fd
, cmd
, arg
);
107 int os_window_size(int fd
, int *rows
, int *cols
)
111 if(ioctl(fd
, TIOCGWINSZ
, &size
) < 0)
120 int os_new_tty_pgrp(int fd
, int pid
)
122 if(ioctl(fd
, TIOCSCTTY
, 0) < 0)
125 if(tcsetpgrp(fd
, pid
) < 0)
131 /* FIXME: ensure namebuf in os_get_if_name is big enough */
132 int os_get_ifname(int fd
, char* namebuf
)
134 if(ioctl(fd
, SIOCGIFNAME
, namebuf
) < 0)
140 int os_set_slip(int fd
)
145 if(ioctl(fd
, TIOCSETD
, &disc
) < 0)
149 if(ioctl(fd
, SIOCSIFENCAP
, &sencap
) < 0)
155 int os_set_owner(int fd
, int pid
)
157 if(fcntl(fd
, F_SETOWN
, pid
) < 0){
158 int save_errno
= errno
;
160 if(fcntl(fd
, F_GETOWN
, 0) != pid
)
167 /* FIXME? moved wholesale from sigio_user.c to get fcntls out of that file */
168 int os_sigio_async(int master
, int slave
)
172 flags
= fcntl(master
, F_GETFL
);
176 if((fcntl(master
, F_SETFL
, flags
| O_NONBLOCK
| O_ASYNC
) < 0) ||
177 (fcntl(master
, F_SETOWN
, os_getpid()) < 0))
180 if((fcntl(slave
, F_SETFL
, flags
| O_NONBLOCK
) < 0))
186 int os_mode_fd(int fd
, int mode
)
191 err
= fchmod(fd
, mode
);
192 } while((err
< 0) && (errno
==EINTR
)) ;
200 int os_file_type(char *file
)
205 err
= os_stat_file(file
, &buf
);
209 if(S_ISDIR(buf
.ust_mode
)) return(OS_TYPE_DIR
);
210 else if(S_ISLNK(buf
.ust_mode
)) return(OS_TYPE_SYMLINK
);
211 else if(S_ISCHR(buf
.ust_mode
)) return(OS_TYPE_CHARDEV
);
212 else if(S_ISBLK(buf
.ust_mode
)) return(OS_TYPE_BLOCKDEV
);
213 else if(S_ISFIFO(buf
.ust_mode
)) return(OS_TYPE_FIFO
);
214 else if(S_ISSOCK(buf
.ust_mode
)) return(OS_TYPE_SOCK
);
215 else return(OS_TYPE_FILE
);
218 int os_file_mode(char *file
, struct openflags
*mode_out
)
222 *mode_out
= OPENFLAGS();
224 err
= os_access(file
, OS_ACC_W_OK
);
225 if((err
< 0) && (err
!= -EACCES
))
228 *mode_out
= of_write(*mode_out
);
230 err
= os_access(file
, OS_ACC_R_OK
);
231 if((err
< 0) && (err
!= -EACCES
))
234 *mode_out
= of_read(*mode_out
);
239 int os_open_file(char *file
, struct openflags flags
, int mode
)
243 if(flags
.r
&& flags
.w
) f
= O_RDWR
;
244 else if(flags
.r
) f
= O_RDONLY
;
245 else if(flags
.w
) f
= O_WRONLY
;
248 if(flags
.s
) f
|= O_SYNC
;
249 if(flags
.c
) f
|= O_CREAT
;
250 if(flags
.t
) f
|= O_TRUNC
;
251 if(flags
.e
) f
|= O_EXCL
;
253 fd
= open64(file
, f
, mode
);
257 if(flags
.cl
&& fcntl(fd
, F_SETFD
, 1)){
266 int os_connect_socket(char *name
)
268 struct sockaddr_un sock
;
271 sock
.sun_family
= AF_UNIX
;
272 snprintf(sock
.sun_path
, sizeof(sock
.sun_path
), "%s", name
);
274 fd
= socket(AF_UNIX
, SOCK_STREAM
, 0);
278 err
= connect(fd
, (struct sockaddr
*) &sock
, sizeof(sock
));
285 void os_close_file(int fd
)
290 int os_seek_file(int fd
, __u64 offset
)
294 actual
= lseek64(fd
, offset
, SEEK_SET
);
300 static int fault_buffer(void *start
, int len
,
301 int (*copy_proc
)(void *addr
, void *buf
, int len
))
303 int page
= getpagesize(), i
;
306 for(i
= 0; i
< len
; i
+= page
){
307 if((*copy_proc
)(start
+ i
, &c
, sizeof(c
)))
310 if((len
% page
) != 0){
311 if((*copy_proc
)(start
+ len
- 1, &c
, sizeof(c
)))
317 static int file_io(int fd
, void *buf
, int len
,
318 int (*io_proc
)(int fd
, void *buf
, int len
),
319 int (*copy_user_proc
)(void *addr
, void *buf
, int len
))
324 n
= (*io_proc
)(fd
, buf
, len
);
325 if((n
< 0) && (errno
== EFAULT
)){
326 err
= fault_buffer(buf
, len
, copy_user_proc
);
329 n
= (*io_proc
)(fd
, buf
, len
);
331 } while((n
< 0) && (errno
== EINTR
));
338 int os_read_file(int fd
, void *buf
, int len
)
340 return(file_io(fd
, buf
, len
, (int (*)(int, void *, int)) read
,
341 copy_from_user_proc
));
344 int os_write_file(int fd
, const void *buf
, int len
)
346 return(file_io(fd
, (void *) buf
, len
,
347 (int (*)(int, void *, int)) write
, copy_to_user_proc
));
350 int os_file_size(char *file
, unsigned long long *size_out
)
355 err
= os_stat_file(file
, &buf
);
357 printk("Couldn't stat \"%s\" : err = %d\n", file
, -err
);
361 if(S_ISBLK(buf
.ust_mode
)){
364 fd
= os_open_file(file
, of_read(OPENFLAGS()), 0);
366 printk("Couldn't open \"%s\", errno = %d\n", file
, -fd
);
369 if(ioctl(fd
, BLKGETSIZE
, &blocks
) < 0){
371 printk("Couldn't get the block size of \"%s\", "
372 "errno = %d\n", file
, errno
);
376 *size_out
= ((long long) blocks
) * 512;
380 *size_out
= buf
.ust_size
;
384 int os_file_modtime(char *file
, unsigned long *modtime
)
389 err
= os_stat_file(file
, &buf
);
391 printk("Couldn't stat \"%s\" : err = %d\n", file
, -err
);
395 *modtime
= buf
.ust_mtime
;
399 int os_get_exec_close(int fd
, int* close_on_exec
)
404 ret
= fcntl(fd
, F_GETFD
);
405 } while((ret
< 0) && (errno
== EINTR
)) ;
410 *close_on_exec
= (ret
&FD_CLOEXEC
) ? 1 : 0;
414 int os_set_exec_close(int fd
, int close_on_exec
)
418 if(close_on_exec
) flag
= FD_CLOEXEC
;
422 err
= fcntl(fd
, F_SETFD
, flag
);
423 } while((err
< 0) && (errno
== EINTR
)) ;
430 int os_pipe(int *fds
, int stream
, int close_on_exec
)
432 int err
, type
= stream
? SOCK_STREAM
: SOCK_DGRAM
;
434 err
= socketpair(AF_UNIX
, type
, 0, fds
);
441 err
= os_set_exec_close(fds
[0], 1);
445 err
= os_set_exec_close(fds
[1], 1);
452 printk("os_pipe : Setting FD_CLOEXEC failed, err = %d\n", -err
);
453 os_close_file(fds
[1]);
454 os_close_file(fds
[0]);
458 int os_set_fd_async(int fd
, int owner
)
462 /* XXX This should do F_GETFL first */
463 if(fcntl(fd
, F_SETFL
, O_ASYNC
| O_NONBLOCK
) < 0){
465 printk("os_set_fd_async : failed to set O_ASYNC and "
466 "O_NONBLOCK on fd # %d, errno = %d\n", fd
, errno
);
470 if(fcntl(fd
, F_SETFD
, 1) < 0){
471 printk("os_set_fd_async : Setting FD_CLOEXEC failed, "
472 "errno = %d\n", errno
);
476 if((fcntl(fd
, F_SETSIG
, SIGIO
) < 0) ||
477 (fcntl(fd
, F_SETOWN
, owner
) < 0)){
479 printk("os_set_fd_async : Failed to fcntl F_SETOWN "
480 "(or F_SETSIG) fd %d to pid %d, errno = %d\n", fd
,
488 int os_clear_fd_async(int fd
)
490 int flags
= fcntl(fd
, F_GETFL
);
492 flags
&= ~(O_ASYNC
| O_NONBLOCK
);
493 if(fcntl(fd
, F_SETFL
, flags
) < 0)
498 int os_set_fd_block(int fd
, int blocking
)
502 flags
= fcntl(fd
, F_GETFL
);
504 if(blocking
) flags
&= ~O_NONBLOCK
;
505 else flags
|= O_NONBLOCK
;
507 if(fcntl(fd
, F_SETFL
, flags
) < 0)
513 int os_accept_connection(int fd
)
517 new = accept(fd
, NULL
, 0);
535 int os_shutdown_socket(int fd
, int r
, int w
)
539 if(r
&& w
) what
= SHUT_RDWR
;
540 else if(r
) what
= SHUT_RD
;
541 else if(w
) what
= SHUT_WR
;
543 printk("os_shutdown_socket : neither r or w was set\n");
546 err
= shutdown(fd
, what
);
552 int os_rcv_fd(int fd
, int *helper_pid_out
)
555 char buf
[CMSG_SPACE(sizeof(new))];
557 struct cmsghdr
*cmsg
;
562 iov
= ((struct iovec
) { .iov_base
= helper_pid_out
,
563 .iov_len
= sizeof(*helper_pid_out
) });
566 msg
.msg_control
= buf
;
567 msg
.msg_controllen
= sizeof(buf
);
570 n
= recvmsg(fd
, &msg
, 0);
574 else if(n
!= sizeof(iov
.iov_len
))
575 *helper_pid_out
= -1;
577 cmsg
= CMSG_FIRSTHDR(&msg
);
579 printk("rcv_fd didn't receive anything, error = %d\n", errno
);
582 if((cmsg
->cmsg_level
!= SOL_SOCKET
) ||
583 (cmsg
->cmsg_type
!= SCM_RIGHTS
)){
584 printk("rcv_fd didn't receive a descriptor\n");
588 new = ((int *) CMSG_DATA(cmsg
))[0];
592 int os_create_unix_socket(char *file
, int len
, int close_on_exec
)
594 struct sockaddr_un addr
;
597 sock
= socket(PF_UNIX
, SOCK_DGRAM
, 0);
602 err
= os_set_exec_close(sock
, 1);
604 printk("create_unix_socket : close_on_exec failed, "
608 addr
.sun_family
= AF_UNIX
;
610 /* XXX Be more careful about overflow */
611 snprintf(addr
.sun_path
, len
, "%s", file
);
613 err
= bind(sock
, (struct sockaddr
*) &addr
, sizeof(addr
));
620 void os_flush_stdout(void)
625 int os_lock_file(int fd
, int excl
)
627 int type
= excl
? F_WRLCK
: F_RDLCK
;
628 struct flock lock
= ((struct flock
) { .l_type
= type
,
629 .l_whence
= SEEK_SET
,
634 err
= fcntl(fd
, F_SETLK
, &lock
);
639 err
= fcntl(fd
, F_GETLK
, &lock
);
645 printk("F_SETLK failed, file already locked by pid %d\n", lock
.l_pid
);
652 * Overrides for Emacs so that we follow Linus's tabbing style.
653 * Emacs will notice this stuff at the end of the file and automatically
654 * adjust the settings for this buffer only. This must remain at the end
656 * ---------------------------------------------------------------------------
658 * c-file-style: "linux"