[PATCH 0/3] exporting capability name/code pairs (final#2)

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Kohei KaiGai
Date: Sunday, February 24, 2008 - 11:06 pm

The following three patches enables to export code/name pairs of
capabilities the running kernel supports, and add a documentation
and samples to use this feature.

[PATCH 1/3] add a private data field within kobj_attribute structure.

This patch add a private data field, declared as void *, within kobj_attribute
structure. The _show() and _store() method in the sysfs attribute entries can
refer this information to identify what entry is accessed.
It makes easier to share a single method implementation with several similar
entries, like ones to export the list of capabilities the running kernel
supports.

[PATCH 2/3] exporting capability name/code pairs

This patch enables to export code/name pairs of capabilities the running
kernel supported.

A newer kernel sometimes adds new capabilities, like CAP_MAC_ADMIN
at 2.6.25. However, we have no interface to disclose what capabilities
are supported on the running kernel. Thus, we have to maintain libcap
version in appropriate one synchronously.

This patch enables libcap to collect the list of capabilities at run time,
and provide them for users. It helps to improve portability of library.

It exports these information as regular files under /sys/kernel/capability.
The numeric node exports its name, the symbolic node exports its code.

[PATCH 3/3] a new example to use kobject/kobj_attribute

This patch can provide a new exmple to use kobject and attribute.
The _show() and _store() method can refer/store the private data field of
kobj_attribute structure to know what entries are accessed by users.
It will make easier to share a single _show()/_store() method with several
entries.

o changes from the previous version
 - add a short description at Documentation/kobject.txt, to use private
   member within kobj_attribute.
 - "supported" is replaced with "supports" at sysfs-kernel-capability.
 - "$(src)/../" is replaced with "$(srctree)/" at security/Makefile
 - The private member is casted to long, when it stores integer value.

Thanks,
-- 
OSS Platform Development Division, NEC
KaiGai Kohei <kaigai@ak.jp.nec.com>
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/3] exporting capability name/code pairs (final#2), Kohei KaiGai, (Sun Feb 24, 11:06 pm)
Re: [PATCH 1/3] add a private data field within kobj_attri ..., Valdis.Kletnieks, (Wed Feb 27, 10:49 pm)
[PATCH 2/3] exporting capability name/code pairs, KaiGai Kohei, (Tue Apr 22, 4:18 am)
[PATCH 3/3] a new example to use kobject/kobj_attribute, KaiGai Kohei, (Tue Apr 22, 4:18 am)
Re: [PATCH 0/3] exporting capability name/code pairs (for ..., Alexey Dobriyan, (Tue Apr 22, 12:29 pm)
Re: [PATCH 0/3] exporting capability name/code pairs (for ..., Alexey Dobriyan, (Wed Apr 23, 12:03 am)