From: Barış Metin Date: Wed, 23 Jun 2010 15:05:27 +0000 (+0200) Subject: read public keys from vsys. Thanks to Giovanni X-Git-Tag: out-of-band~4 X-Git-Url: http://git.onelab.eu/?p=playground.git;a=commitdiff_plain;h=4f4b6a83adff080c491ebf3d186f3e9205d61e46 read public keys from vsys. Thanks to Giovanni --- diff --git a/omf_keys/key_fs.py b/omf_keys/key_fs.py index b9f6c33..383b432 100644 --- a/omf_keys/key_fs.py +++ b/omf_keys/key_fs.py @@ -14,10 +14,12 @@ import os +import sys import stat import errno import fuse -import sys +import fcntl +import select from fuse import Fuse fuse.fuse_python_api = (0, 2) @@ -25,9 +27,20 @@ fuse.fuse_python_api = (0, 2) keys_dir = "/keys" keys_file = os.path.join(keys_dir, "all") -# TODO: for Giovanni def read_keys(): - return "reading PLC users' public keys\n" + fin = os.open("/vsys/publickeys.in", os.O_NONBLOCK | os.O_WRONLY) + fout = os.open("/vsys/publickeys.out", os.O_NONBLOCK | os.O_RDONLY) + + in_flags = fcntl.fcntl(fin, fcntl.F_GETFL) + out_flags = fcntl.fcntl(fin, fcntl.F_GETFL) + + res = select.select([fout], [], []) + + fcntl.fcntl(fin, fcntl.F_SETFL, in_flags & ~os.O_NONBLOCK) + fcntl.fcntl(fout, fcntl.F_SETFL, out_flags & ~os.O_NONBLOCK) + + f = os.fdopen(fout, "r") + return f.read() class MyStat(fuse.Stat): def __init__(self):