1. 14 1月, 2014 7 次提交
  2. 06 11月, 2013 13 次提交
  3. 25 9月, 2013 1 次提交
  4. 13 6月, 2013 1 次提交
  5. 08 5月, 2013 2 次提交
  6. 01 5月, 2013 9 次提交
  7. 30 4月, 2013 1 次提交
  8. 17 4月, 2013 1 次提交
    • E
      audit: allow checking the type of audit message in the user filter · 62062cf8
      Eric Paris 提交于
      When userspace sends messages to the audit system it includes a type.
      We want to be able to filter messages based on that type without have to
      do the all or nothing option currently available on the
      AUDIT_FILTER_TYPE filter list.  Instead we should be able to use the
      AUDIT_FILTER_USER filter list and just use the message type as one part
      of the matching decision.
      Signed-off-by: NEric Paris <eparis@redhat.com>
      62062cf8
  9. 11 4月, 2013 1 次提交
  10. 09 4月, 2013 3 次提交
  11. 29 3月, 2013 1 次提交
    • A
      audit: pass int* to nlmsg_next · 2851da57
      Alexandru Copot 提交于
      Commit 94191213 replaced the macros
      NLMSG_NEXT with calls to nlmsg_next which produces this warning:
      
      kernel/audit.c: In function ‘audit_receive_skb’:
      kernel/audit.c:928:3: warning: passing argument 2 of ‘nlmsg_next’ makes pointer from integer without a cast
      In file included from include/net/rtnetlink.h:5:0,
                       from include/net/neighbour.h:28,
                       from include/net/dst.h:17,
                       from include/net/sock.h:68,
                       from kernel/audit.c:55:
      include/net/netlink.h:359:1: note: expected ‘int *’ but argument is of type ‘int’
      
      Fix this by sending the intended pointer.
      Signed-off-by: NAlexandru Copot <alex.mihai.c@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2851da57