lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 6 Jun 2007 23:24:16 +0200
From:	Rodolfo Giometti <giometti@...eenne.com>
To:	Andrew Morton <akpm@...ux-foundation.org>
Cc:	linux-kernel@...r.kernel.org, linuxpps@...enneenne.com
Subject: Re: [RFC] PPS: Implementing LinuxPPS API with new syscalls

On Wed, Jun 06, 2007 at 01:29:34PM -0700, Andrew Morton wrote:

> >    asmlinkage long sys_time_pps_find(int cmd, int __user *source,
> >                                           char __user *name, int namelen,
> >                                           char __user *path, int pathlen);

Try to find a PPS source into the system giving one of its feature.

With cmd==PPS_FIND_SRC we check for a PPS source with index number
equal to *source, if *source==-1 we just ask for the first PPS source
defined into the system.

With cmd=PPS_FIND_PATH we check for a PPS source with path name equal
to path.

Selected source is returned into *source and PPS source info are
placed into path and name arrays.

> >    asmlinkage long sys_time_pps_getparams(int source,
> >                                           struct pps_params __user *params);

struct pps_params {
        int api_version;                /* API version # */
        int mode;                       /* mode bits */
        union pps_timeu assert_off_tu;  /* offset compensation for assert */
        union pps_timeu clear_off_tu;   /* offset compensation for clear */
};

Given a PPS source index returns its parameters setting.

> >    asmlinkage long sys_time_pps_setparams(int source,
> >                                           const struct pps_params __user *params);

Sets PPS source parameters.

> >    asmlinkage long sys_time_pps_getcap(int source, int __user *mode);

Given a	PPS source index returns its functioning modes.

> >    asmlinkage long sys_time_pps_fetch(int source, const int tsformat,
> >                                           struct pps_info __user *info,
> >                                           const struct timespec __user *timeout);

struct pps_info {
        unsigned long assert_sequence;  /* seq. num. of assert event */
        unsigned long clear_sequence;   /* seq. num. of clear event */
        union pps_timeu assert_tu;      /* time of assert event */
        union pps_timeu clear_tu;       /* time of clear event */
        int current_mode;               /* current mode bits */
};

Given a PPS source index, a time format and, optionally, a timeout
time returns PPS time data.

Further info on these structs can be get on RFC 2783.

Apart sys_time_pps_find() the other syscalls derive directly from RFC
2783 suggestions.

I hope these info are enough... :)

Rodolfo

-- 

GNU/Linux Solutions                  e-mail:    giometti@...eenne.com
Linux Device Driver                             giometti@...dd.com
Embedded Systems                     		giometti@...ux.it
UNIX programming                     phone:     +39 349 2432127
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ