From: Eric Paris Date: Fri, 18 Apr 2008 14:36:22 +0000 (-0400) Subject: Audit: increase the maximum length of the key field X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a42da93c8641a0b49405ceb2a2063975c823aa49;p=linux-beck.git Audit: increase the maximum length of the key field Key lengths were arbitrarily limited to 32 characters. If userspace is going to start using the single kernel key field as multiple virtual key fields (example key=key1,key2,key3,key4) we should give them enough room to work. Signed-off-by: Eric Paris Signed-off-by: Al Viro --- diff --git a/include/linux/audit.h b/include/linux/audit.h index f938335af75e..dcd5395b400d 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h @@ -146,7 +146,7 @@ /* Rule structure sizes -- if these change, different AUDIT_ADD and * AUDIT_LIST commands must be implemented. */ #define AUDIT_MAX_FIELDS 64 -#define AUDIT_MAX_KEY_LEN 32 +#define AUDIT_MAX_KEY_LEN 256 #define AUDIT_BITMASK_SIZE 64 #define AUDIT_WORD(nr) ((__u32)((nr)/32)) #define AUDIT_BIT(nr) (1 << ((nr) - AUDIT_WORD(nr)*32))