mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Randy Dunlap <randy.dunlap@oracle.com>
To: "kernel coder" <lhrkernelcoder@gmail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: system call implementation for x86_64
Date: Sun, 20 May 2007 22:46:04 -0700	[thread overview]
Message-ID: <20070520224604.93506b6b.randy.dunlap@oracle.com> (raw)
In-Reply-To: <f69849430705190455m4d62835fx9aed5a17df69c805@mail.gmail.com>

On Sat, 19 May 2007 04:55:12 -0700 kernel coder wrote:

> hi,
> 
> I'm trying to implement a system call for x86_64. Mine processor is
> dual core opetron.There is very little material on web for
> implementing system calls for x86_64 processor for 2.6 series kernel.I
> tried to implement a new system call by observing the existing
> implementation but to no success.Following are files names and changes
> made.

Your example is very CPU-independent, i.e., not x86_64-specific,
so following examples of recently-added syscalls should be good enough.

I used your "patch" below (with a few small modifications) on
2.6.22-rc2 and it worked fine.

Linux unicorn 2.6.22-rc2 #2 SMP Sun May 20 22:22:36 PDT 2007 x86_64 x86_64 x86_64 GNU/Linux
...
[   98.369454] new system call


> //////////////////////////////////////////////////
> file-> include/asm-x86_64/unistd.h
> 
> #define __NR_newcall        273
> __SYSCALL(__NR_newcall, sys_newcall)
> 
> #define __NR_syscall_max __NR_newcall

syscall_max is no longer used.

> 
> //////////////////////////////////////////////////
> file-> include/linux/syscalls.h
> 
> asmlinkage unsigned long sys_newcall(char __user *buf);

not unsigned.

> 
> /////////////////////////////////////////////
> file--> fs/read_write.c
> 
> asmlinkage unsigned long sys_newcall(char __user * buf){

not unsigned.

> 
>      printk("new system call \n");
>      ret 0;

	return 0;

> }
> 
> EXPORT_SYMBOL_GPL(sys_write)

  EXPORT_SYMBOL_GPL(sys_newcall);

> Please let me know where i'm doing wrong .Following is program which
> is calling mine system call
> 
> 
> #include <stdlib.h>
> #include <stdio.h>
> #include <sys/unistd.h>

#include <unistd.h>

> #include <sys/syscall.h>
> 
>   long int ret;
>    int num = 243;
>   char  buffer=[20];

eh?  does not compile.

> 
> int main() {
> 
> 
>   asm ("syscall;"
>        : "=a" (ret)
>        : "0" (num),
>          "D" (buffer),
>       );

I just used the syscall() glibc interface instead of asm:

	ret = syscall(__NR_newcall);

>  return ret;
> }
> 
> When i call this ,nothing gets printed in file /var/log/messages.Am i
> missing something ?

Mostly typos...

> Actually i wana pass a pointer to kernel from user space.Later on data
> will be copied to that memory location .i am thinking of using
> copy_to_user for copying data.Buffer passed through system call will
> be used by kernel function as circular ring.And portions of this ring
> will get updated frequently even after system call has returned.
> 
> Is there any better way to do this?

Sounds mostly OK to me.
Where are the ring head, tail, size, etc. maintained?


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

      reply	other threads:[~2007-05-21  5:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-19 11:55 kernel coder
2007-05-21  5:46 ` Randy Dunlap [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070520224604.93506b6b.randy.dunlap@oracle.com \
    --to=randy.dunlap@oracle.com \
    --cc=lhrkernelcoder@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®