#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
-#include <sys/filio.h> /* XXX */
+#include <sys/filio.h> /* XXX */
#include <sys/sockio.h>
#include <sys/stat.h>
#include <sys/uio.h>
static int soo_drain(struct fileproc *, vfs_context_t ctx);
const struct fileops socketops = {
- .fo_type = DTYPE_SOCKET,
- .fo_read = soo_read,
- .fo_write = soo_write,
- .fo_ioctl = soo_ioctl,
- .fo_select = soo_select,
- .fo_close = soo_close,
+ .fo_type = DTYPE_SOCKET,
+ .fo_read = soo_read,
+ .fo_write = soo_write,
+ .fo_ioctl = soo_ioctl,
+ .fo_select = soo_select,
+ .fo_close = soo_close,
+ .fo_drain = soo_drain,
.fo_kqfilter = soo_kqfilter,
- .fo_drain = soo_drain,
};
/* ARGSUSED */
static int
soo_read(struct fileproc *fp, struct uio *uio, __unused int flags,
#if !CONFIG_MACF_SOCKET
- __unused
+ __unused
#endif
- vfs_context_t ctx)
+ vfs_context_t ctx)
{
struct socket *so;
int stat;
if ((so = (struct socket *)fp->f_fglob->fg_data) == NULL) {
/* This is not a valid open file descriptor */
- return (EBADF);
+ return EBADF;
}
#if CONFIG_MACF_SOCKET
error = mac_socket_check_receive(vfs_context_ucred(ctx), so);
- if (error)
- return (error);
+ if (error) {
+ return error;
+ }
#endif /* CONFIG_MACF_SOCKET */
fsoreceive = so->so_proto->pr_usrreqs->pru_soreceive;
stat = (*fsoreceive)(so, 0, uio, 0, 0, 0);
- return (stat);
+ return stat;
}
/* ARGSUSED */
static int
soo_write(struct fileproc *fp, struct uio *uio, __unused int flags,
- vfs_context_t ctx)
+ vfs_context_t ctx)
{
struct socket *so;
int stat;
if ((so = (struct socket *)fp->f_fglob->fg_data) == NULL) {
/* This is not a valid open file descriptor */
- return (EBADF);
+ return EBADF;
}
#if CONFIG_MACF_SOCKET
/* JMM - have to fetch the socket's remote addr */
error = mac_socket_check_send(vfs_context_ucred(ctx), so, NULL);
- if (error)
- return (error);
+ if (error) {
+ return error;
+ }
#endif /* CONFIG_MACF_SOCKET */
fsosend = so->so_proto->pr_usrreqs->pru_sosend;
/* Generation of SIGPIPE can be controlled per socket */
procp = vfs_context_proc(ctx);
- if (stat == EPIPE && !(so->so_flags & SOF_NOSIGPIPE))
+ if (stat == EPIPE && !(so->so_flags & SOF_NOSIGPIPE)) {
psignal(procp, SIGPIPE);
+ }
- return (stat);
+ return stat;
}
__private_extern__ int
#if CONFIG_MACF_SOCKET_SUBSET
error = mac_socket_check_ioctl(kauth_cred_get(), so, cmd);
- if (error)
- return (error);
+ if (error) {
+ return error;
+ }
#endif
socket_lock(so, 1);
default:
error = sflt_ioctl(so, cmd, data);
- if (error != 0)
+ if (error != 0) {
goto out;
+ }
break;
}
}
switch (cmd) {
- case FIONBIO: /* int */
- bcopy(data, &int_arg, sizeof (int_arg));
- if (int_arg)
+ case FIONBIO: /* int */
+ bcopy(data, &int_arg, sizeof(int_arg));
+ if (int_arg) {
so->so_state |= SS_NBIO;
- else
+ } else {
so->so_state &= ~SS_NBIO;
+ }
goto out;
- case FIOASYNC: /* int */
- bcopy(data, &int_arg, sizeof (int_arg));
+ case FIOASYNC: /* int */
+ bcopy(data, &int_arg, sizeof(int_arg));
if (int_arg) {
so->so_state |= SS_ASYNC;
so->so_rcv.sb_flags |= SB_ASYNC;
}
goto out;
- case FIONREAD: /* int */
- bcopy(&so->so_rcv.sb_cc, data, sizeof (u_int32_t));
+ case FIONREAD: /* int */
+ bcopy(&so->so_rcv.sb_cc, data, sizeof(u_int32_t));
goto out;
- case SIOCSPGRP: /* int */
- bcopy(data, &so->so_pgid, sizeof (pid_t));
+ case SIOCSPGRP: /* int */
+ bcopy(data, &so->so_pgid, sizeof(pid_t));
goto out;
- case SIOCGPGRP: /* int */
- bcopy(&so->so_pgid, data, sizeof (pid_t));
+ case SIOCGPGRP: /* int */
+ bcopy(&so->so_pgid, data, sizeof(pid_t));
goto out;
- case SIOCATMARK: /* int */
+ case SIOCATMARK: /* int */
int_arg = (so->so_state & SS_RCVATMARK) != 0;
- bcopy(&int_arg, data, sizeof (int_arg));
+ bcopy(&int_arg, data, sizeof(int_arg));
goto out;
- case SIOCSETOT: /* int; deprecated */
+ case SIOCSETOT: /* int; deprecated */
error = EOPNOTSUPP;
goto out;
- case SIOCGASSOCIDS32: /* so_aidreq32 */
- case SIOCGASSOCIDS64: /* so_aidreq64 */
- case SIOCGCONNIDS32: /* so_cidreq32 */
- case SIOCGCONNIDS64: /* so_cidreq64 */
- case SIOCGCONNINFO32: /* so_cinforeq32 */
- case SIOCGCONNINFO64: /* so_cinforeq64 */
- case SIOCSCONNORDER: /* so_cordreq */
- case SIOCGCONNORDER: /* so_cordreq */
+ case SIOCGASSOCIDS32: /* so_aidreq32 */
+ case SIOCGASSOCIDS64: /* so_aidreq64 */
+ case SIOCGCONNIDS32: /* so_cidreq32 */
+ case SIOCGCONNIDS64: /* so_cidreq64 */
+ case SIOCGCONNINFO32: /* so_cinforeq32 */
+ case SIOCGCONNINFO64: /* so_cinforeq64 */
+ case SIOCSCONNORDER: /* so_cordreq */
+ case SIOCGCONNORDER: /* so_cordreq */
error = (*so->so_proto->pr_usrreqs->pru_control)(so,
cmd, data, NULL, p);
goto out;
if (IOCGROUP(cmd) == 'i') {
error = ifioctllocked(so, cmd, data, p);
} else {
- if (IOCGROUP(cmd) == 'r')
+ if (IOCGROUP(cmd) == 'r') {
error = rtioctl(cmd, data, p);
- else
+ } else {
error = (*so->so_proto->pr_usrreqs->pru_control)(so,
cmd, data, NULL, p);
+ }
}
out:
socket_unlock(so, 1);
- if (error == EJUSTRETURN)
+ if (error == EJUSTRETURN) {
error = 0;
+ }
- return (error);
+ return error;
}
int
if ((so = (struct socket *)fp->f_fglob->fg_data) == NULL) {
/* This is not a valid open file descriptor */
- return (EBADF);
+ return EBADF;
}
- return (soioctl(so, cmd, data, procp));
+ return soioctl(so, cmd, data, procp);
}
int
int retnum = 0;
proc_t procp;
- if (so == NULL || so == (struct socket *)-1)
- return (0);
+ if (so == NULL || so == (struct socket *)-1) {
+ return 0;
+ }
procp = vfs_context_proc(ctx);
#if CONFIG_MACF_SOCKET
- if (mac_socket_check_select(vfs_context_ucred(ctx), so, which) != 0)
- return (0);
+ if (mac_socket_check_select(vfs_context_ucred(ctx), so, which) != 0) {
+ return 0;
+ }
#endif /* CONFIG_MACF_SOCKET */
socket_lock(so, 1);
switch (which) {
-
case FREAD:
so->so_rcv.sb_flags |= SB_SEL;
if (soreadable(so)) {
done:
socket_unlock(so, 1);
- return (retnum);
+ return retnum;
}
int
#if CONFIG_MACF_SOCKET_SUBSET
ret = mac_socket_check_stat(kauth_cred_get(), so);
- if (ret)
- return (ret);
+ if (ret) {
+ return ret;
+ }
#endif
if (isstat64 != 0) {
sb64 = (struct stat64 *)ub;
- bzero((caddr_t)sb64, sizeof (*sb64));
+ bzero((caddr_t)sb64, sizeof(*sb64));
} else {
sb = (struct stat *)ub;
- bzero((caddr_t)sb, sizeof (*sb));
+ bzero((caddr_t)sb, sizeof(*sb));
}
socket_lock(so, 1);
if (isstat64 != 0) {
sb64->st_mode = S_IFSOCK;
if ((so->so_state & SS_CANTRCVMORE) == 0 ||
- so->so_rcv.sb_cc != 0)
+ so->so_rcv.sb_cc != 0) {
sb64->st_mode |= S_IRUSR | S_IRGRP | S_IROTH;
- if ((so->so_state & SS_CANTSENDMORE) == 0)
+ }
+ if ((so->so_state & SS_CANTSENDMORE) == 0) {
sb64->st_mode |= S_IWUSR | S_IWGRP | S_IWOTH;
+ }
sb64->st_size = so->so_rcv.sb_cc - so->so_rcv.sb_ctl;
sb64->st_uid = kauth_cred_getuid(so->so_cred);
sb64->st_gid = kauth_cred_getgid(so->so_cred);
} else {
sb->st_mode = S_IFSOCK;
if ((so->so_state & SS_CANTRCVMORE) == 0 ||
- so->so_rcv.sb_cc != 0)
+ so->so_rcv.sb_cc != 0) {
sb->st_mode |= S_IRUSR | S_IRGRP | S_IROTH;
- if ((so->so_state & SS_CANTSENDMORE) == 0)
+ }
+ if ((so->so_state & SS_CANTSENDMORE) == 0) {
sb->st_mode |= S_IWUSR | S_IWGRP | S_IWOTH;
+ }
sb->st_size = so->so_rcv.sb_cc - so->so_rcv.sb_ctl;
sb->st_uid = kauth_cred_getuid(so->so_cred);
sb->st_gid = kauth_cred_getgid(so->so_cred);
ret = (*so->so_proto->pr_usrreqs->pru_sense)(so, ub, isstat64);
socket_unlock(so, 1);
- return (ret);
+ return ret;
}
/* ARGSUSED */
sp = (struct socket *)fg->fg_data;
fg->fg_data = NULL;
- if (sp)
+ if (sp) {
error = soclose(sp);
+ }
- return (error);
+ return error;
}
static int
socket_unlock(so, 1);
}
- return (error);
+ return error;
}
/*