]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
rxrpc: add rxrpc_sock_set_min_security_level
authorChristoph Hellwig <hch@lst.de>
Thu, 28 May 2020 05:12:35 +0000 (07:12 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 May 2020 18:11:46 +0000 (11:11 -0700)
Add a helper to directly set the RXRPC_MIN_SECURITY_LEVEL sockopt from
kernel space without going through a fake uaccess.

Thanks to David Howells for the documentation updates.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/networking/rxrpc.rst
fs/afs/rxrpc.c
include/net/af_rxrpc.h
net/rxrpc/af_rxrpc.c

index 5ad35113d0f46072a2d3104cad43c9612f8c228f..68552b92dc44249862c17b22cef6313be2968608 100644 (file)
@@ -477,7 +477,7 @@ AF_RXRPC sockets support a few socket options at the SOL_RXRPC level:
         Encrypted checksum plus packet padded and first eight bytes of packet
         encrypted - which includes the actual packet length.
 
-     (c) RXRPC_SECURITY_ENCRYPTED
+     (c) RXRPC_SECURITY_ENCRYPT
 
         Encrypted checksum plus entire packet padded and encrypted, including
         actual packet length.
@@ -578,7 +578,7 @@ A client would issue an operation by:
      This issues a request_key() to get the key representing the security
      context.  The minimum security level can be set::
 
-       unsigned int sec = RXRPC_SECURITY_ENCRYPTED;
+       unsigned int sec = RXRPC_SECURITY_ENCRYPT;
        setsockopt(client, SOL_RXRPC, RXRPC_MIN_SECURITY_LEVEL,
                   &sec, sizeof(sec));
 
@@ -1090,6 +1090,15 @@ The kernel interface functions are as follows:
      jiffies).  In the event of the timeout occurring, the call will be
      aborted and -ETIME or -ETIMEDOUT will be returned.
 
+ (#) Apply the RXRPC_MIN_SECURITY_LEVEL sockopt to a socket from within in the
+     kernel::
+
+       int rxrpc_sock_set_min_security_level(struct sock *sk,
+                                            unsigned int val);
+
+     This specifies the minimum security level required for calls on this
+     socket.
+
 
 Configurable Parameters
 =======================
index 1ecc67da6c1a4e9cf570f9624ef5603146c52880..e313dae01674fb941f30a67bdb8467576797a948 100644 (file)
@@ -37,7 +37,6 @@ int afs_open_socket(struct afs_net *net)
 {
        struct sockaddr_rxrpc srx;
        struct socket *socket;
-       unsigned int min_level;
        int ret;
 
        _enter("");
@@ -57,9 +56,8 @@ int afs_open_socket(struct afs_net *net)
        srx.transport.sin6.sin6_family  = AF_INET6;
        srx.transport.sin6.sin6_port    = htons(AFS_CM_PORT);
 
-       min_level = RXRPC_SECURITY_ENCRYPT;
-       ret = kernel_setsockopt(socket, SOL_RXRPC, RXRPC_MIN_SECURITY_LEVEL,
-                               (void *)&min_level, sizeof(min_level));
+       ret = rxrpc_sock_set_min_security_level(socket->sk,
+                                               RXRPC_SECURITY_ENCRYPT);
        if (ret < 0)
                goto error_2;
 
index ab988940bf0454d3c4c58670840316a910c31b21..91eacbdcf33d2b7d38971673e274a63835c0d271 100644 (file)
@@ -72,4 +72,6 @@ bool rxrpc_kernel_call_is_complete(struct rxrpc_call *);
 void rxrpc_kernel_set_max_life(struct socket *, struct rxrpc_call *,
                               unsigned long);
 
+int rxrpc_sock_set_min_security_level(struct sock *sk, unsigned int val);
+
 #endif /* _NET_RXRPC_H */
index 15ee92d7958152148de57eda59a67bfd24453036..394189b81849f7da0280d823f7858ef930d6c8dd 100644 (file)
@@ -571,6 +571,19 @@ out:
        return ret;
 }
 
+int rxrpc_sock_set_min_security_level(struct sock *sk, unsigned int val)
+{
+       if (sk->sk_state != RXRPC_UNBOUND)
+               return -EISCONN;
+       if (val > RXRPC_SECURITY_MAX)
+               return -EINVAL;
+       lock_sock(sk);
+       rxrpc_sk(sk)->min_sec_level = val;
+       release_sock(sk);
+       return 0;
+}
+EXPORT_SYMBOL(rxrpc_sock_set_min_security_level);
+
 /*
  * set RxRPC socket options
  */