|
@@ -23,6 +23,7 @@
|
|
|
#include <linux/string.h>
|
|
|
#include <keys/user-type.h>
|
|
|
#include <linux/key-type.h>
|
|
|
+#include <linux/inet.h>
|
|
|
#include "cifsglob.h"
|
|
|
#include "cifs_spnego.h"
|
|
|
#include "cifs_debug.h"
|
|
@@ -73,9 +74,6 @@ struct key_type cifs_spnego_key_type = {
|
|
|
* strlen(";sec=ntlmsspi") */
|
|
|
#define MAX_MECH_STR_LEN 13
|
|
|
|
|
|
-/* max possible addr len eg FEDC:BA98:7654:3210:FEDC:BA98:7654:3210/128 */
|
|
|
-#define MAX_IPV6_ADDR_LEN 43
|
|
|
-
|
|
|
/* strlen of "host=" */
|
|
|
#define HOST_KEY_LEN 5
|
|
|
|
|
@@ -102,7 +100,7 @@ cifs_get_spnego_key(struct cifsSesInfo *sesInfo)
|
|
|
host=hostname sec=mechanism uid=0xFF user=username */
|
|
|
desc_len = MAX_VER_STR_LEN +
|
|
|
HOST_KEY_LEN + strlen(hostname) +
|
|
|
- IP_KEY_LEN + MAX_IPV6_ADDR_LEN +
|
|
|
+ IP_KEY_LEN + INET6_ADDRSTRLEN +
|
|
|
MAX_MECH_STR_LEN +
|
|
|
UID_KEY_LEN + (sizeof(uid_t) * 2) +
|
|
|
USER_KEY_LEN + strlen(sesInfo->userName) + 1;
|