How can I find the implementations of Linux kernel system calls?

Clash Royale CLAN TAG#URR8PPP
I am trying to understand how a function, say mkdir, works by looking at the kernel source. This is an attempt to understand the kernel internals and navigate between various functions. I know mkdir is defined in sys/stat.h. I found the prototype:
/* Create a new directory named PATH, with permission bits MODE. */
extern int mkdir (__const char *__path, __mode_t __mode)
__THROW __nonnull ((1));
Now I need to see in which C file this function is implemented. From the source directory, I tried
ack "int mkdir"
which displayed
security/inode.c
103:static int mkdir(struct inode *dir, struct dentry *dentry, int mode)
tools/perf/util/util.c
4:int mkdir_p(char *path, mode_t mode)
tools/perf/util/util.h
259:int mkdir_p(char *path, mode_t mode);
But none of them matches the definition in sys/stat.h.
Questions
- Which file has the
mkdirimplementation? - With a function definition like the above, how can I find out which file has the implementation? Is there any pattern which the kernel follows in defining and implementing methods?
NOTE: I am using kernel 2.6.36-rc1.
linux-kernel source system-calls
add a comment |
I am trying to understand how a function, say mkdir, works by looking at the kernel source. This is an attempt to understand the kernel internals and navigate between various functions. I know mkdir is defined in sys/stat.h. I found the prototype:
/* Create a new directory named PATH, with permission bits MODE. */
extern int mkdir (__const char *__path, __mode_t __mode)
__THROW __nonnull ((1));
Now I need to see in which C file this function is implemented. From the source directory, I tried
ack "int mkdir"
which displayed
security/inode.c
103:static int mkdir(struct inode *dir, struct dentry *dentry, int mode)
tools/perf/util/util.c
4:int mkdir_p(char *path, mode_t mode)
tools/perf/util/util.h
259:int mkdir_p(char *path, mode_t mode);
But none of them matches the definition in sys/stat.h.
Questions
- Which file has the
mkdirimplementation? - With a function definition like the above, how can I find out which file has the implementation? Is there any pattern which the kernel follows in defining and implementing methods?
NOTE: I am using kernel 2.6.36-rc1.
linux-kernel source system-calls
2
By the way, check out this: voinici.ceata.org/~tct/resurse/utlk.pdf
– Tom Brito
Jul 26 '12 at 13:53
add a comment |
I am trying to understand how a function, say mkdir, works by looking at the kernel source. This is an attempt to understand the kernel internals and navigate between various functions. I know mkdir is defined in sys/stat.h. I found the prototype:
/* Create a new directory named PATH, with permission bits MODE. */
extern int mkdir (__const char *__path, __mode_t __mode)
__THROW __nonnull ((1));
Now I need to see in which C file this function is implemented. From the source directory, I tried
ack "int mkdir"
which displayed
security/inode.c
103:static int mkdir(struct inode *dir, struct dentry *dentry, int mode)
tools/perf/util/util.c
4:int mkdir_p(char *path, mode_t mode)
tools/perf/util/util.h
259:int mkdir_p(char *path, mode_t mode);
But none of them matches the definition in sys/stat.h.
Questions
- Which file has the
mkdirimplementation? - With a function definition like the above, how can I find out which file has the implementation? Is there any pattern which the kernel follows in defining and implementing methods?
NOTE: I am using kernel 2.6.36-rc1.
linux-kernel source system-calls
I am trying to understand how a function, say mkdir, works by looking at the kernel source. This is an attempt to understand the kernel internals and navigate between various functions. I know mkdir is defined in sys/stat.h. I found the prototype:
/* Create a new directory named PATH, with permission bits MODE. */
extern int mkdir (__const char *__path, __mode_t __mode)
__THROW __nonnull ((1));
Now I need to see in which C file this function is implemented. From the source directory, I tried
ack "int mkdir"
which displayed
security/inode.c
103:static int mkdir(struct inode *dir, struct dentry *dentry, int mode)
tools/perf/util/util.c
4:int mkdir_p(char *path, mode_t mode)
tools/perf/util/util.h
259:int mkdir_p(char *path, mode_t mode);
But none of them matches the definition in sys/stat.h.
Questions
- Which file has the
mkdirimplementation? - With a function definition like the above, how can I find out which file has the implementation? Is there any pattern which the kernel follows in defining and implementing methods?
NOTE: I am using kernel 2.6.36-rc1.
linux-kernel source system-calls
linux-kernel source system-calls
edited Aug 23 '16 at 10:45
pevik
608514
608514
asked Aug 19 '10 at 14:26
Navaneeth K NNavaneeth K N
2,23331112
2,23331112
2
By the way, check out this: voinici.ceata.org/~tct/resurse/utlk.pdf
– Tom Brito
Jul 26 '12 at 13:53
add a comment |
2
By the way, check out this: voinici.ceata.org/~tct/resurse/utlk.pdf
– Tom Brito
Jul 26 '12 at 13:53
2
2
By the way, check out this: voinici.ceata.org/~tct/resurse/utlk.pdf
– Tom Brito
Jul 26 '12 at 13:53
By the way, check out this: voinici.ceata.org/~tct/resurse/utlk.pdf
– Tom Brito
Jul 26 '12 at 13:53
add a comment |
7 Answers
7
active
oldest
votes
System calls aren't handled like regular function calls. It takes special code to make the transition from user space to kernel space, basically a bit of inline assembly code injected into your program at the call site. The kernel side code that "catches" the system call is also low-level stuff you probably don't need to understand deeply, at least at first.
In include/linux/syscalls.h under your kernel source directory, you find this:
asmlinkage long sys_mkdir(const char __user *pathname, int mode);
Then in /usr/include/asm*/unistd.h, you find this:
#define __NR_mkdir 83
__SYSCALL(__NR_mkdir, sys_mkdir)
This code is saying mkdir(2) is system call #83. That is to say, system calls are called by number, not by address as with a normal function call within your own program or to a function in a library linked to your program. The inline assembly glue code I mentioned above uses this to make the transition from user to kernel space, taking your parameters along with it.
Another bit of evidence that things are a little weird here is that there isn't always a strict parameter list for system calls: open(2), for instance, can take either 2 or 3 parameters. That means open(2) is overloaded, a feature of C++, not C, yet the syscall interface is C-compatible. (This is not the same thing as C's varargs feature, which allows a single function to take a variable number of arguments.)
To answer your first question, there is no single file where mkdir() exists. Linux supports many different file systems and each one has its own implementation of the "mkdir" operation. The abstraction layer that lets the kernel hide all that behind a single system call is called the VFS. So, you probably want to start digging in fs/namei.c, with vfs_mkdir(). The actual implementations of the low-level file system modifying code are elsewhere. For instance, the ext4 implementation is called ext4_mkdir(), defined in fs/ext4/namei.c.
As for your second question, yes there are patterns to all this, but not a single rule. What you actually need is a fairly broad understanding of how the kernel works in order to figure out where you should look for any particular system call. Not all system calls involve the VFS, so their kernel-side call chains don't all start in fs/namei.c. mmap(2), for instance, starts in mm/mmap.c, because it's part of the memory management ("mm") subsystem of the kernel.
I recommend you get a copy of "Understanding the Linux Kernel" by Bovet and Cesati.
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
2
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in theDocumentationsubdirectory of the source tree for the kernel I'm working with.
– Warren Young
May 14 '13 at 17:28
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has...in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.
– Random832
Jan 19 '17 at 16:48
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
add a comment |
This probably doesn't answer your question directly, but I've found strace to be really cool when trying to understand the underlying system calls, in action, that are made for even the simplest shell commands. e.g.
strace -o trace.txt mkdir mynewdir
The system calls for the command mkdir mynewdir will be dumped to trace.txt for your viewing pleasure.
5
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
3
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
add a comment |
A good place to read the Linux kernel source is the Linux cross-reference (LXR)¹. Searches return typed matches (functions prototypes, variable declarations, etc.) in addition to free text search results, so it's handier than a mere grep (and faster too).
LXR doesn't expand preprocessor definitions. System calls have their name mangled by the preprocessor all over the place. However, most (all?) system calls are defined with one of the SYSCALL_DEFINEx families of macros. Since mkdir takes two arguments, a search for SYSCALL_DEFINE2(mkdir leads to the declaration of the mkdir syscall:
SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
return sys_mkdirat(AT_FDCWD, pathname, mode);
ok, sys_mkdirat means it's the mkdirat syscall, so clicking on it only leads you to the declaration in include/linux/syscalls.h, but the definition is just above.
The main job of mkdirat is to call vfs_mkdir (VFS is the generic filesystem layer). Cliking on that shows two search results: the declaration in include/linux/fs.h, and the definition a few lines above. The main job of vfs_mkdir is to call the filesystem-specific implementation: dir->i_op->mkdir. To find how this is implemented, you need to turn to the implementation of the individual filesystem, and there's no hard-and-fast rule — it could even be a module outside the kernel tree.
¹ LXR is an indexing program. There are several websites that provide an interface to LXR, with slightly different sets of known versions and slightly different web interfaces. They tend to come and go, so if the one you're used to isn't available, do a web search for “linux cross-reference” to find another.
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
add a comment |
System calls are usually wrapped in the SYSCALL_DEFINEx() macro, which is why a simple grep doesn't find them:
fs/namei.c:SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
The final function name after the macro is expanded ends up being sys_mkdir. The SYSCALL_DEFINEx() macro adds boilerplate things like tracing code that each syscall definition needs to have.
add a comment |
Note: the .h file doesn't define the function. It's declared in that .h file and defined (implemented) elsewhere. This allows the compiler to include information about the function's signature (prototype) to allow type checking of arguments and match the return types to any calling contexts in your code.
In general .h (header) files in C are used to declare functions and define macros.
mkdir in particular is a system call. There may be a GNU libc wrapper around that system call (almost certainly is, in fact). The true kernel implementation of mkdir can be found by searching the kernel sources and the system calls in particular.
Note that there will also be an implementation of some sort of directory creation code for each filesystem. The VFS (virtual filesystem) layer provides a common API which the system call layer can call into. Every filesystem must register functions for the VFS layer to call into. This allows different filesystems to implement their own semantics for how directories are structured (for example if they are stored using some sort of hashing scheme to make searching for specific entries more efficient). I mention this because you're likely to trip over these filesystem specific directory creation functions if you're searching the Linux kernel source tree.
add a comment |
None of the implementations you found matches the prototype in sys/stat.h Maybe searching for an include statement with this header file would be more successful?
1
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
add a comment |
Here are a couple really great blog posts describing various techniques for hunting down low-level kernel source code.
- https://stackoverflow.com/questions/2442966/c-c-function-definitions-without-assembly/2444508#2444508
- sysadvent: Day 15 - Down the 'ls' Rabbit Hole
12
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f797%2fhow-can-i-find-the-implementations-of-linux-kernel-system-calls%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
System calls aren't handled like regular function calls. It takes special code to make the transition from user space to kernel space, basically a bit of inline assembly code injected into your program at the call site. The kernel side code that "catches" the system call is also low-level stuff you probably don't need to understand deeply, at least at first.
In include/linux/syscalls.h under your kernel source directory, you find this:
asmlinkage long sys_mkdir(const char __user *pathname, int mode);
Then in /usr/include/asm*/unistd.h, you find this:
#define __NR_mkdir 83
__SYSCALL(__NR_mkdir, sys_mkdir)
This code is saying mkdir(2) is system call #83. That is to say, system calls are called by number, not by address as with a normal function call within your own program or to a function in a library linked to your program. The inline assembly glue code I mentioned above uses this to make the transition from user to kernel space, taking your parameters along with it.
Another bit of evidence that things are a little weird here is that there isn't always a strict parameter list for system calls: open(2), for instance, can take either 2 or 3 parameters. That means open(2) is overloaded, a feature of C++, not C, yet the syscall interface is C-compatible. (This is not the same thing as C's varargs feature, which allows a single function to take a variable number of arguments.)
To answer your first question, there is no single file where mkdir() exists. Linux supports many different file systems and each one has its own implementation of the "mkdir" operation. The abstraction layer that lets the kernel hide all that behind a single system call is called the VFS. So, you probably want to start digging in fs/namei.c, with vfs_mkdir(). The actual implementations of the low-level file system modifying code are elsewhere. For instance, the ext4 implementation is called ext4_mkdir(), defined in fs/ext4/namei.c.
As for your second question, yes there are patterns to all this, but not a single rule. What you actually need is a fairly broad understanding of how the kernel works in order to figure out where you should look for any particular system call. Not all system calls involve the VFS, so their kernel-side call chains don't all start in fs/namei.c. mmap(2), for instance, starts in mm/mmap.c, because it's part of the memory management ("mm") subsystem of the kernel.
I recommend you get a copy of "Understanding the Linux Kernel" by Bovet and Cesati.
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
2
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in theDocumentationsubdirectory of the source tree for the kernel I'm working with.
– Warren Young
May 14 '13 at 17:28
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has...in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.
– Random832
Jan 19 '17 at 16:48
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
add a comment |
System calls aren't handled like regular function calls. It takes special code to make the transition from user space to kernel space, basically a bit of inline assembly code injected into your program at the call site. The kernel side code that "catches" the system call is also low-level stuff you probably don't need to understand deeply, at least at first.
In include/linux/syscalls.h under your kernel source directory, you find this:
asmlinkage long sys_mkdir(const char __user *pathname, int mode);
Then in /usr/include/asm*/unistd.h, you find this:
#define __NR_mkdir 83
__SYSCALL(__NR_mkdir, sys_mkdir)
This code is saying mkdir(2) is system call #83. That is to say, system calls are called by number, not by address as with a normal function call within your own program or to a function in a library linked to your program. The inline assembly glue code I mentioned above uses this to make the transition from user to kernel space, taking your parameters along with it.
Another bit of evidence that things are a little weird here is that there isn't always a strict parameter list for system calls: open(2), for instance, can take either 2 or 3 parameters. That means open(2) is overloaded, a feature of C++, not C, yet the syscall interface is C-compatible. (This is not the same thing as C's varargs feature, which allows a single function to take a variable number of arguments.)
To answer your first question, there is no single file where mkdir() exists. Linux supports many different file systems and each one has its own implementation of the "mkdir" operation. The abstraction layer that lets the kernel hide all that behind a single system call is called the VFS. So, you probably want to start digging in fs/namei.c, with vfs_mkdir(). The actual implementations of the low-level file system modifying code are elsewhere. For instance, the ext4 implementation is called ext4_mkdir(), defined in fs/ext4/namei.c.
As for your second question, yes there are patterns to all this, but not a single rule. What you actually need is a fairly broad understanding of how the kernel works in order to figure out where you should look for any particular system call. Not all system calls involve the VFS, so their kernel-side call chains don't all start in fs/namei.c. mmap(2), for instance, starts in mm/mmap.c, because it's part of the memory management ("mm") subsystem of the kernel.
I recommend you get a copy of "Understanding the Linux Kernel" by Bovet and Cesati.
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
2
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in theDocumentationsubdirectory of the source tree for the kernel I'm working with.
– Warren Young
May 14 '13 at 17:28
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has...in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.
– Random832
Jan 19 '17 at 16:48
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
add a comment |
System calls aren't handled like regular function calls. It takes special code to make the transition from user space to kernel space, basically a bit of inline assembly code injected into your program at the call site. The kernel side code that "catches" the system call is also low-level stuff you probably don't need to understand deeply, at least at first.
In include/linux/syscalls.h under your kernel source directory, you find this:
asmlinkage long sys_mkdir(const char __user *pathname, int mode);
Then in /usr/include/asm*/unistd.h, you find this:
#define __NR_mkdir 83
__SYSCALL(__NR_mkdir, sys_mkdir)
This code is saying mkdir(2) is system call #83. That is to say, system calls are called by number, not by address as with a normal function call within your own program or to a function in a library linked to your program. The inline assembly glue code I mentioned above uses this to make the transition from user to kernel space, taking your parameters along with it.
Another bit of evidence that things are a little weird here is that there isn't always a strict parameter list for system calls: open(2), for instance, can take either 2 or 3 parameters. That means open(2) is overloaded, a feature of C++, not C, yet the syscall interface is C-compatible. (This is not the same thing as C's varargs feature, which allows a single function to take a variable number of arguments.)
To answer your first question, there is no single file where mkdir() exists. Linux supports many different file systems and each one has its own implementation of the "mkdir" operation. The abstraction layer that lets the kernel hide all that behind a single system call is called the VFS. So, you probably want to start digging in fs/namei.c, with vfs_mkdir(). The actual implementations of the low-level file system modifying code are elsewhere. For instance, the ext4 implementation is called ext4_mkdir(), defined in fs/ext4/namei.c.
As for your second question, yes there are patterns to all this, but not a single rule. What you actually need is a fairly broad understanding of how the kernel works in order to figure out where you should look for any particular system call. Not all system calls involve the VFS, so their kernel-side call chains don't all start in fs/namei.c. mmap(2), for instance, starts in mm/mmap.c, because it's part of the memory management ("mm") subsystem of the kernel.
I recommend you get a copy of "Understanding the Linux Kernel" by Bovet and Cesati.
System calls aren't handled like regular function calls. It takes special code to make the transition from user space to kernel space, basically a bit of inline assembly code injected into your program at the call site. The kernel side code that "catches" the system call is also low-level stuff you probably don't need to understand deeply, at least at first.
In include/linux/syscalls.h under your kernel source directory, you find this:
asmlinkage long sys_mkdir(const char __user *pathname, int mode);
Then in /usr/include/asm*/unistd.h, you find this:
#define __NR_mkdir 83
__SYSCALL(__NR_mkdir, sys_mkdir)
This code is saying mkdir(2) is system call #83. That is to say, system calls are called by number, not by address as with a normal function call within your own program or to a function in a library linked to your program. The inline assembly glue code I mentioned above uses this to make the transition from user to kernel space, taking your parameters along with it.
Another bit of evidence that things are a little weird here is that there isn't always a strict parameter list for system calls: open(2), for instance, can take either 2 or 3 parameters. That means open(2) is overloaded, a feature of C++, not C, yet the syscall interface is C-compatible. (This is not the same thing as C's varargs feature, which allows a single function to take a variable number of arguments.)
To answer your first question, there is no single file where mkdir() exists. Linux supports many different file systems and each one has its own implementation of the "mkdir" operation. The abstraction layer that lets the kernel hide all that behind a single system call is called the VFS. So, you probably want to start digging in fs/namei.c, with vfs_mkdir(). The actual implementations of the low-level file system modifying code are elsewhere. For instance, the ext4 implementation is called ext4_mkdir(), defined in fs/ext4/namei.c.
As for your second question, yes there are patterns to all this, but not a single rule. What you actually need is a fairly broad understanding of how the kernel works in order to figure out where you should look for any particular system call. Not all system calls involve the VFS, so their kernel-side call chains don't all start in fs/namei.c. mmap(2), for instance, starts in mm/mmap.c, because it's part of the memory management ("mm") subsystem of the kernel.
I recommend you get a copy of "Understanding the Linux Kernel" by Bovet and Cesati.
edited Feb 6 '18 at 16:10
alkuzad
1214
1214
answered Aug 19 '10 at 15:28
Warren YoungWarren Young
55k11143147
55k11143147
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
2
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in theDocumentationsubdirectory of the source tree for the kernel I'm working with.
– Warren Young
May 14 '13 at 17:28
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has...in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.
– Random832
Jan 19 '17 at 16:48
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
add a comment |
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
2
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in theDocumentationsubdirectory of the source tree for the kernel I'm working with.
– Warren Young
May 14 '13 at 17:28
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has...in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.
– Random832
Jan 19 '17 at 16:48
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
Very good answer. One point about the book you mention, "Understanding the Linux Kernel". I dont have it, but from the release date (2000) and TOC (at oreilly site) seem to me that is about 2.2 kernels plus some insights from 2.4 kernels (but I my be wrong). My question is: there is an equivalent book that cover 2.6 kernels internals ? (or even better that cover 2.2, 2.4 and 2.6) ?
– DavAlPi
May 14 '13 at 14:27
2
2
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in the
Documentation subdirectory of the source tree for the kernel I'm working with.– Warren Young
May 14 '13 at 17:28
@DavAlPi: As far as I'm aware, Bovet & Cesati is still the best single book on this topic. When I need to supplement it with more up to date material, I go digging in the
Documentation subdirectory of the source tree for the kernel I'm working with.– Warren Young
May 14 '13 at 17:28
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has
... in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.– Random832
Jan 19 '17 at 16:48
In fact open(2) is a varargs function. There are only two ways to call it, so the manpage documents it this way, the actual prototype has
... in it as any varargs function. Of course, this is implemented at the libc level. It may pass either 0 or a garbage value to the kernel ABI when the third parameter is not used.– Random832
Jan 19 '17 at 16:48
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
"It's something you don't need to understand". World would be a better place if this kind of sentence was nowhere to find on stackexchange network.
– Petr
Sep 29 '17 at 7:37
add a comment |
This probably doesn't answer your question directly, but I've found strace to be really cool when trying to understand the underlying system calls, in action, that are made for even the simplest shell commands. e.g.
strace -o trace.txt mkdir mynewdir
The system calls for the command mkdir mynewdir will be dumped to trace.txt for your viewing pleasure.
5
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
3
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
add a comment |
This probably doesn't answer your question directly, but I've found strace to be really cool when trying to understand the underlying system calls, in action, that are made for even the simplest shell commands. e.g.
strace -o trace.txt mkdir mynewdir
The system calls for the command mkdir mynewdir will be dumped to trace.txt for your viewing pleasure.
5
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
3
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
add a comment |
This probably doesn't answer your question directly, but I've found strace to be really cool when trying to understand the underlying system calls, in action, that are made for even the simplest shell commands. e.g.
strace -o trace.txt mkdir mynewdir
The system calls for the command mkdir mynewdir will be dumped to trace.txt for your viewing pleasure.
This probably doesn't answer your question directly, but I've found strace to be really cool when trying to understand the underlying system calls, in action, that are made for even the simplest shell commands. e.g.
strace -o trace.txt mkdir mynewdir
The system calls for the command mkdir mynewdir will be dumped to trace.txt for your viewing pleasure.
answered Aug 19 '10 at 19:37
BanjerBanjer
1,78051829
1,78051829
5
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
3
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
add a comment |
5
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
3
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
5
5
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
+1 Neat trick! I'd not used that before
– David Oneill
Nov 16 '10 at 20:42
3
3
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
Better yet, make the output file trace.strace, and open it in VIM. VIM will highlight it, making reading it a lot easier.
– Marcin
Aug 23 '16 at 14:25
add a comment |
A good place to read the Linux kernel source is the Linux cross-reference (LXR)¹. Searches return typed matches (functions prototypes, variable declarations, etc.) in addition to free text search results, so it's handier than a mere grep (and faster too).
LXR doesn't expand preprocessor definitions. System calls have their name mangled by the preprocessor all over the place. However, most (all?) system calls are defined with one of the SYSCALL_DEFINEx families of macros. Since mkdir takes two arguments, a search for SYSCALL_DEFINE2(mkdir leads to the declaration of the mkdir syscall:
SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
return sys_mkdirat(AT_FDCWD, pathname, mode);
ok, sys_mkdirat means it's the mkdirat syscall, so clicking on it only leads you to the declaration in include/linux/syscalls.h, but the definition is just above.
The main job of mkdirat is to call vfs_mkdir (VFS is the generic filesystem layer). Cliking on that shows two search results: the declaration in include/linux/fs.h, and the definition a few lines above. The main job of vfs_mkdir is to call the filesystem-specific implementation: dir->i_op->mkdir. To find how this is implemented, you need to turn to the implementation of the individual filesystem, and there's no hard-and-fast rule — it could even be a module outside the kernel tree.
¹ LXR is an indexing program. There are several websites that provide an interface to LXR, with slightly different sets of known versions and slightly different web interfaces. They tend to come and go, so if the one you're used to isn't available, do a web search for “linux cross-reference” to find another.
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
add a comment |
A good place to read the Linux kernel source is the Linux cross-reference (LXR)¹. Searches return typed matches (functions prototypes, variable declarations, etc.) in addition to free text search results, so it's handier than a mere grep (and faster too).
LXR doesn't expand preprocessor definitions. System calls have their name mangled by the preprocessor all over the place. However, most (all?) system calls are defined with one of the SYSCALL_DEFINEx families of macros. Since mkdir takes two arguments, a search for SYSCALL_DEFINE2(mkdir leads to the declaration of the mkdir syscall:
SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
return sys_mkdirat(AT_FDCWD, pathname, mode);
ok, sys_mkdirat means it's the mkdirat syscall, so clicking on it only leads you to the declaration in include/linux/syscalls.h, but the definition is just above.
The main job of mkdirat is to call vfs_mkdir (VFS is the generic filesystem layer). Cliking on that shows two search results: the declaration in include/linux/fs.h, and the definition a few lines above. The main job of vfs_mkdir is to call the filesystem-specific implementation: dir->i_op->mkdir. To find how this is implemented, you need to turn to the implementation of the individual filesystem, and there's no hard-and-fast rule — it could even be a module outside the kernel tree.
¹ LXR is an indexing program. There are several websites that provide an interface to LXR, with slightly different sets of known versions and slightly different web interfaces. They tend to come and go, so if the one you're used to isn't available, do a web search for “linux cross-reference” to find another.
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
add a comment |
A good place to read the Linux kernel source is the Linux cross-reference (LXR)¹. Searches return typed matches (functions prototypes, variable declarations, etc.) in addition to free text search results, so it's handier than a mere grep (and faster too).
LXR doesn't expand preprocessor definitions. System calls have their name mangled by the preprocessor all over the place. However, most (all?) system calls are defined with one of the SYSCALL_DEFINEx families of macros. Since mkdir takes two arguments, a search for SYSCALL_DEFINE2(mkdir leads to the declaration of the mkdir syscall:
SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
return sys_mkdirat(AT_FDCWD, pathname, mode);
ok, sys_mkdirat means it's the mkdirat syscall, so clicking on it only leads you to the declaration in include/linux/syscalls.h, but the definition is just above.
The main job of mkdirat is to call vfs_mkdir (VFS is the generic filesystem layer). Cliking on that shows two search results: the declaration in include/linux/fs.h, and the definition a few lines above. The main job of vfs_mkdir is to call the filesystem-specific implementation: dir->i_op->mkdir. To find how this is implemented, you need to turn to the implementation of the individual filesystem, and there's no hard-and-fast rule — it could even be a module outside the kernel tree.
¹ LXR is an indexing program. There are several websites that provide an interface to LXR, with slightly different sets of known versions and slightly different web interfaces. They tend to come and go, so if the one you're used to isn't available, do a web search for “linux cross-reference” to find another.
A good place to read the Linux kernel source is the Linux cross-reference (LXR)¹. Searches return typed matches (functions prototypes, variable declarations, etc.) in addition to free text search results, so it's handier than a mere grep (and faster too).
LXR doesn't expand preprocessor definitions. System calls have their name mangled by the preprocessor all over the place. However, most (all?) system calls are defined with one of the SYSCALL_DEFINEx families of macros. Since mkdir takes two arguments, a search for SYSCALL_DEFINE2(mkdir leads to the declaration of the mkdir syscall:
SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
return sys_mkdirat(AT_FDCWD, pathname, mode);
ok, sys_mkdirat means it's the mkdirat syscall, so clicking on it only leads you to the declaration in include/linux/syscalls.h, but the definition is just above.
The main job of mkdirat is to call vfs_mkdir (VFS is the generic filesystem layer). Cliking on that shows two search results: the declaration in include/linux/fs.h, and the definition a few lines above. The main job of vfs_mkdir is to call the filesystem-specific implementation: dir->i_op->mkdir. To find how this is implemented, you need to turn to the implementation of the individual filesystem, and there's no hard-and-fast rule — it could even be a module outside the kernel tree.
¹ LXR is an indexing program. There are several websites that provide an interface to LXR, with slightly different sets of known versions and slightly different web interfaces. They tend to come and go, so if the one you're used to isn't available, do a web search for “linux cross-reference” to find another.
edited Jan 10 at 8:48
answered Jan 4 '11 at 21:09
GillesGilles
533k12810721594
533k12810721594
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
add a comment |
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
That is one heck of a resource. Great answer.
– Stabledog
Nov 28 '13 at 15:42
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
"Internal Server Error" in the link of linux.no.
– Fredrick Gauss
Jan 10 at 5:51
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
@FredrickGauss For a while lxr.linux.no that was the nicest interface to LXR but it had frequent downtime. Now I think it's gone for good. I replaced the first link to another LXR interface.
– Gilles
Jan 10 at 8:50
add a comment |
System calls are usually wrapped in the SYSCALL_DEFINEx() macro, which is why a simple grep doesn't find them:
fs/namei.c:SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
The final function name after the macro is expanded ends up being sys_mkdir. The SYSCALL_DEFINEx() macro adds boilerplate things like tracing code that each syscall definition needs to have.
add a comment |
System calls are usually wrapped in the SYSCALL_DEFINEx() macro, which is why a simple grep doesn't find them:
fs/namei.c:SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
The final function name after the macro is expanded ends up being sys_mkdir. The SYSCALL_DEFINEx() macro adds boilerplate things like tracing code that each syscall definition needs to have.
add a comment |
System calls are usually wrapped in the SYSCALL_DEFINEx() macro, which is why a simple grep doesn't find them:
fs/namei.c:SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
The final function name after the macro is expanded ends up being sys_mkdir. The SYSCALL_DEFINEx() macro adds boilerplate things like tracing code that each syscall definition needs to have.
System calls are usually wrapped in the SYSCALL_DEFINEx() macro, which is why a simple grep doesn't find them:
fs/namei.c:SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
The final function name after the macro is expanded ends up being sys_mkdir. The SYSCALL_DEFINEx() macro adds boilerplate things like tracing code that each syscall definition needs to have.
edited Jan 24 '12 at 3:12
Kevin
27.2k106299
27.2k106299
answered Aug 20 '10 at 6:16
stefanhastefanha
20112
20112
add a comment |
add a comment |
Note: the .h file doesn't define the function. It's declared in that .h file and defined (implemented) elsewhere. This allows the compiler to include information about the function's signature (prototype) to allow type checking of arguments and match the return types to any calling contexts in your code.
In general .h (header) files in C are used to declare functions and define macros.
mkdir in particular is a system call. There may be a GNU libc wrapper around that system call (almost certainly is, in fact). The true kernel implementation of mkdir can be found by searching the kernel sources and the system calls in particular.
Note that there will also be an implementation of some sort of directory creation code for each filesystem. The VFS (virtual filesystem) layer provides a common API which the system call layer can call into. Every filesystem must register functions for the VFS layer to call into. This allows different filesystems to implement their own semantics for how directories are structured (for example if they are stored using some sort of hashing scheme to make searching for specific entries more efficient). I mention this because you're likely to trip over these filesystem specific directory creation functions if you're searching the Linux kernel source tree.
add a comment |
Note: the .h file doesn't define the function. It's declared in that .h file and defined (implemented) elsewhere. This allows the compiler to include information about the function's signature (prototype) to allow type checking of arguments and match the return types to any calling contexts in your code.
In general .h (header) files in C are used to declare functions and define macros.
mkdir in particular is a system call. There may be a GNU libc wrapper around that system call (almost certainly is, in fact). The true kernel implementation of mkdir can be found by searching the kernel sources and the system calls in particular.
Note that there will also be an implementation of some sort of directory creation code for each filesystem. The VFS (virtual filesystem) layer provides a common API which the system call layer can call into. Every filesystem must register functions for the VFS layer to call into. This allows different filesystems to implement their own semantics for how directories are structured (for example if they are stored using some sort of hashing scheme to make searching for specific entries more efficient). I mention this because you're likely to trip over these filesystem specific directory creation functions if you're searching the Linux kernel source tree.
add a comment |
Note: the .h file doesn't define the function. It's declared in that .h file and defined (implemented) elsewhere. This allows the compiler to include information about the function's signature (prototype) to allow type checking of arguments and match the return types to any calling contexts in your code.
In general .h (header) files in C are used to declare functions and define macros.
mkdir in particular is a system call. There may be a GNU libc wrapper around that system call (almost certainly is, in fact). The true kernel implementation of mkdir can be found by searching the kernel sources and the system calls in particular.
Note that there will also be an implementation of some sort of directory creation code for each filesystem. The VFS (virtual filesystem) layer provides a common API which the system call layer can call into. Every filesystem must register functions for the VFS layer to call into. This allows different filesystems to implement their own semantics for how directories are structured (for example if they are stored using some sort of hashing scheme to make searching for specific entries more efficient). I mention this because you're likely to trip over these filesystem specific directory creation functions if you're searching the Linux kernel source tree.
Note: the .h file doesn't define the function. It's declared in that .h file and defined (implemented) elsewhere. This allows the compiler to include information about the function's signature (prototype) to allow type checking of arguments and match the return types to any calling contexts in your code.
In general .h (header) files in C are used to declare functions and define macros.
mkdir in particular is a system call. There may be a GNU libc wrapper around that system call (almost certainly is, in fact). The true kernel implementation of mkdir can be found by searching the kernel sources and the system calls in particular.
Note that there will also be an implementation of some sort of directory creation code for each filesystem. The VFS (virtual filesystem) layer provides a common API which the system call layer can call into. Every filesystem must register functions for the VFS layer to call into. This allows different filesystems to implement their own semantics for how directories are structured (for example if they are stored using some sort of hashing scheme to make searching for specific entries more efficient). I mention this because you're likely to trip over these filesystem specific directory creation functions if you're searching the Linux kernel source tree.
edited Sep 13 '10 at 21:22
answered Aug 21 '10 at 7:31
Jim DennisJim Dennis
57529
57529
add a comment |
add a comment |
None of the implementations you found matches the prototype in sys/stat.h Maybe searching for an include statement with this header file would be more successful?
1
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
add a comment |
None of the implementations you found matches the prototype in sys/stat.h Maybe searching for an include statement with this header file would be more successful?
1
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
add a comment |
None of the implementations you found matches the prototype in sys/stat.h Maybe searching for an include statement with this header file would be more successful?
None of the implementations you found matches the prototype in sys/stat.h Maybe searching for an include statement with this header file would be more successful?
answered Aug 19 '10 at 15:19
greg0iregreg0ire
1,26621332
1,26621332
1
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
add a comment |
1
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
1
1
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
The implementation (as described in sys/stat.h) is the business of userland and libc. The kernel internal stuff (how it is really done) is kernel internal business. For all the kernel hackers care, the internal function could be called xyzzy and take 5 parameters. It is libc's job to take the userland call, translate it into whatever kernel incantations are required, ship it off and collect any results.
– vonbrand
Jan 16 '13 at 3:42
add a comment |
Here are a couple really great blog posts describing various techniques for hunting down low-level kernel source code.
- https://stackoverflow.com/questions/2442966/c-c-function-definitions-without-assembly/2444508#2444508
- sysadvent: Day 15 - Down the 'ls' Rabbit Hole
12
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
add a comment |
Here are a couple really great blog posts describing various techniques for hunting down low-level kernel source code.
- https://stackoverflow.com/questions/2442966/c-c-function-definitions-without-assembly/2444508#2444508
- sysadvent: Day 15 - Down the 'ls' Rabbit Hole
12
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
add a comment |
Here are a couple really great blog posts describing various techniques for hunting down low-level kernel source code.
- https://stackoverflow.com/questions/2442966/c-c-function-definitions-without-assembly/2444508#2444508
- sysadvent: Day 15 - Down the 'ls' Rabbit Hole
Here are a couple really great blog posts describing various techniques for hunting down low-level kernel source code.
- https://stackoverflow.com/questions/2442966/c-c-function-definitions-without-assembly/2444508#2444508
- sysadvent: Day 15 - Down the 'ls' Rabbit Hole
edited May 23 '17 at 12:39
Community♦
1
1
answered Jan 13 '11 at 22:04
An̲̳̳drewAn̲̳̳drew
16913
16913
12
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
add a comment |
12
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
12
12
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
Please don't post just links to blogs or forums, summarize their contents so that readers can see what they're about, and to have something left if the sites disappear. Also, your first link is about libc, which is off-topic for this question.
– Gilles
Jan 13 '11 at 22:24
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f797%2fhow-can-i-find-the-implementations-of-linux-kernel-system-calls%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
By the way, check out this: voinici.ceata.org/~tct/resurse/utlk.pdf
– Tom Brito
Jul 26 '12 at 13:53