Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # RxRPC session sockets
  4. #
  5. config AF_RXRPC
  6. tristate "RxRPC session sockets"
  7. depends on INET
  8. select CRYPTO
  9. select KEYS
  10. select NET_UDP_TUNNEL
  11. help
  12. Say Y or M here to include support for RxRPC session sockets (just
  13. the transport part, not the presentation part: (un)marshalling is
  14. left to the application).
  15. These are used for AFS kernel filesystem and userspace utilities.
  16. This module at the moment only supports client operations and is
  17. currently incomplete.
  18. See Documentation/networking/rxrpc.rst.
  19. if AF_RXRPC
  20. config AF_RXRPC_IPV6
  21. bool "IPv6 support for RxRPC"
  22. depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
  23. help
  24. Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
  25. its network transport.
  26. config AF_RXRPC_INJECT_LOSS
  27. bool "Inject packet loss into RxRPC packet stream"
  28. help
  29. Say Y here to inject packet loss by discarding some received and some
  30. transmitted packets.
  31. config AF_RXRPC_INJECT_RX_DELAY
  32. bool "Inject delay into packet reception"
  33. depends on SYSCTL
  34. help
  35. Say Y here to inject a delay into packet reception, allowing an
  36. extended RTT time to be modelled. The delay can be configured using
  37. /proc/sys/net/rxrpc/rxrpc_inject_rx_delay, setting a number of
  38. milliseconds up to 0.5s (note that the granularity is actually in
  39. jiffies).
  40. config AF_RXRPC_DEBUG
  41. bool "RxRPC dynamic debugging"
  42. help
  43. Say Y here to make runtime controllable debugging messages appear.
  44. See Documentation/networking/rxrpc.rst.
  45. config RXKAD
  46. bool "RxRPC Kerberos security"
  47. select CRYPTO
  48. select CRYPTO_MANAGER
  49. select CRYPTO_SKCIPHER
  50. select CRYPTO_PCBC
  51. select CRYPTO_FCRYPT
  52. help
  53. Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
  54. through the use of the key retention service.
  55. See Documentation/networking/rxrpc.rst.
  56. config RXGK
  57. bool "RxRPC GSSAPI security"
  58. select CRYPTO_KRB5
  59. select CRYPTO_MANAGER
  60. select CRYPTO_KRB5ENC
  61. select CRYPTO_AUTHENC
  62. select CRYPTO_SKCIPHER
  63. select CRYPTO_HASH_INFO
  64. select CRYPTO_HMAC
  65. select CRYPTO_CMAC
  66. select CRYPTO_SHA1
  67. select CRYPTO_SHA256
  68. select CRYPTO_SHA512
  69. select CRYPTO_CBC
  70. select CRYPTO_CTS
  71. select CRYPTO_AES
  72. select CRYPTO_CAMELLIA
  73. help
  74. Provide the GSSAPI-based RxGK security class for AFS. Keys are added
  75. with add_key().
  76. See Documentation/networking/rxrpc.rst.
  77. config RXPERF
  78. tristate "RxRPC test service"
  79. help
  80. Provide an rxperf service tester. This listens on UDP port 7009 for
  81. incoming calls from the rxperf program (an example of which can be
  82. found in OpenAFS).
  83. endif