Skip to content

Commit

Permalink
af_iucv: add sockopt() to enable/disable use of IPRM_DATA msgs
Browse files Browse the repository at this point in the history
Provide the socket operations getsocktopt() and setsockopt() to enable/disable
sending of data in the parameter list of IUCV messages.
The patch sets respective flag only.

Signed-off-by: Hendrik Brueckner <[email protected]>
Signed-off-by: Ursula Braun <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
hbrueckner authored and davem330 committed Apr 23, 2009
1 parent af88b52 commit 9d5c5d8
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 3 deletions.
1 change: 1 addition & 0 deletions include/linux/socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ struct ucred {
#define SOL_BLUETOOTH 274
#define SOL_PNPIPE 275
#define SOL_RDS 276
#define SOL_IUCV 277

/* IPX options */
#define IPX_TYPE 1
Expand Down
4 changes: 4 additions & 0 deletions include/net/iucv/af_iucv.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ struct iucv_sock {
struct sk_buff_head backlog_skb_q;
struct sock_msg_q message_q;
unsigned int send_tag;
u8 flags;
};

/* iucv socket options (SOL_IUCV) */
#define SO_IPRMDATA_MSG 0x0080 /* send/recv IPRM_DATA msgs */

struct iucv_sock_list {
struct hlist_head head;
rwlock_t lock;
Expand Down
79 changes: 76 additions & 3 deletions net/iucv/af_iucv.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#define CONFIG_IUCV_SOCK_DEBUG 1

#define IPRMDATA 0x80
#define VERSION "1.0"
#define VERSION "1.1"

static char iucv_userid[80];

Expand Down Expand Up @@ -226,6 +226,7 @@ static struct sock *iucv_sock_alloc(struct socket *sock, int proto, gfp_t prio)
spin_lock_init(&iucv_sk(sk)->message_q.lock);
skb_queue_head_init(&iucv_sk(sk)->backlog_skb_q);
iucv_sk(sk)->send_tag = 0;
iucv_sk(sk)->flags = 0;

sk->sk_destruct = iucv_sock_destruct;
sk->sk_sndtimeo = IUCV_CONN_TIMEOUT;
Expand Down Expand Up @@ -1003,6 +1004,78 @@ static int iucv_sock_release(struct socket *sock)
return err;
}

/* getsockopt and setsockopt */
static int iucv_sock_setsockopt(struct socket *sock, int level, int optname,
char __user *optval, int optlen)
{
struct sock *sk = sock->sk;
struct iucv_sock *iucv = iucv_sk(sk);
int val;
int rc;

if (level != SOL_IUCV)
return -ENOPROTOOPT;

if (optlen < sizeof(int))
return -EINVAL;

if (get_user(val, (int __user *) optval))
return -EFAULT;

rc = 0;

lock_sock(sk);
switch (optname) {
case SO_IPRMDATA_MSG:
if (val)
iucv->flags |= IUCV_IPRMDATA;
else
iucv->flags &= ~IUCV_IPRMDATA;
break;
default:
rc = -ENOPROTOOPT;
break;
}
release_sock(sk);

return rc;
}

static int iucv_sock_getsockopt(struct socket *sock, int level, int optname,
char __user *optval, int __user *optlen)
{
struct sock *sk = sock->sk;
struct iucv_sock *iucv = iucv_sk(sk);
int val, len;

if (level != SOL_IUCV)
return -ENOPROTOOPT;

if (get_user(len, optlen))
return -EFAULT;

if (len < 0)
return -EINVAL;

len = min_t(unsigned int, len, sizeof(int));

switch (optname) {
case SO_IPRMDATA_MSG:
val = (iucv->flags & IUCV_IPRMDATA) ? 1 : 0;
break;
default:
return -ENOPROTOOPT;
}

if (put_user(len, optlen))
return -EFAULT;
if (copy_to_user(optval, &val, len))
return -EFAULT;

return 0;
}


/* Callback wrappers - called from iucv base support */
static int iucv_callback_connreq(struct iucv_path *path,
u8 ipvmid[8], u8 ipuser[16])
Expand Down Expand Up @@ -1229,8 +1302,8 @@ static struct proto_ops iucv_sock_ops = {
.mmap = sock_no_mmap,
.socketpair = sock_no_socketpair,
.shutdown = iucv_sock_shutdown,
.setsockopt = sock_no_setsockopt,
.getsockopt = sock_no_getsockopt
.setsockopt = iucv_sock_setsockopt,
.getsockopt = iucv_sock_getsockopt,
};

static struct net_proto_family iucv_sock_family_ops = {
Expand Down

0 comments on commit 9d5c5d8

Please sign in to comment.