Whamcloud - gitweb
LU-502 don't allow to kill service threads by OOM killer.
[fs/lustre-release.git] / libcfs / include / libcfs / winnt / winnt-prim.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * libcfs/include/libcfs/winnt/winnt-prim.h
37  *
38  * Basic library routines.
39  */
40
41 #ifndef __LIBCFS_WINNT_CFS_PRIM_H__
42 #define __LIBCFS_WINNT_CFS_PRIM_H__
43
44 #ifndef __LIBCFS_LIBCFS_H__
45 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
46 #endif
47
48 /*
49  * libcfs proc device object
50  */
51
52
53 #define LUSTRE_PROC_DEVICE  L"\\Device\\LNetProcFS"      /* proc fs emulator device object */
54 #define LUSTRE_PROC_SYMLNK  L"\\DosDevices\\LNetProcFS"  /* proc fs user-visible device */
55
56
57 /*
58  * Device IO Control Code Definitions
59  */
60
61 #define FILE_DEVICE_LIBCFS      ('LC')
62
63 #define FUNC_LIBCFS_VERSION     0x101  // get version of current libcfs
64 #define FUNC_LIBCFS_IOCTL       0x102  // Device i/o control to proc fs
65
66
67 #define IOCTL_LIBCFS_VERSION \
68      CTL_CODE (FILE_DEVICE_LIBCFS, FUNC_LIBCFS_VERSION, METHOD_BUFFERED, FILE_ANY_ACCESS)
69 #define IOCTL_LIBCFS_ENTRY   \
70      CTL_CODE(FILE_DEVICE_LIBCFS, FUNC_LIBCFS_IOCTL,   METHOD_BUFFERED, FILE_ANY_ACCESS)
71
72 #pragma pack(4)
73 typedef struct _CFS_PROC_IOCTL {
74
75     ULONG           cmd;    // ioctl command identifier
76     ULONG           len;    // length of data
77     int             rc;     // return code
78     ULONG           usused; // unused 
79
80     // UCHAR        data[]; // content of the real ioctl
81
82 } CFS_PROC_IOCTL, *PCFS_PROC_IOCTL;
83 #pragma pack()
84
85 #ifdef __KERNEL__
86
87 void cfs_enter_debugger(void);
88 #define __builtin_return_address(x) (0)
89
90 /*
91  * Symbol functions for libcfs
92  *
93  * OSX has no facility for use to register symbol.
94  * So we have to implement it.
95  */
96 #define CFS_SYMBOL_LEN     64
97
98 struct  cfs_symbol {
99         char       name[CFS_SYMBOL_LEN];
100         void      *value;
101         int        ref;
102         cfs_list_t sym_list;
103 };
104
105 extern int      cfs_symbol_register(const char *, const void *);
106 extern void     cfs_symbol_unregister(const char *);
107 extern void *   cfs_symbol_get(const char *);
108 extern void     cfs_symbol_put(const char *);
109 extern void     cfs_symbol_clean();
110
111 typedef struct file_operations cfs_file_operations_t;
112 typedef struct file cfs_file_t;
113
114 /*
115  * Pseudo device register
116  */
117
118 typedef struct
119 {
120     int                     minor;
121     const char *            name;
122     cfs_file_operations_t * fops;
123 } cfs_psdev_t;
124
125 int cfs_psdev_register(cfs_psdev_t * psdev);
126 int cfs_psdev_deregister(cfs_psdev_t * psdev);
127
128
129 /*
130  * Proc emulator file system APIs
131  */
132
133 typedef int cfs_read_proc_t(char *page, char **start, off_t off,
134                             int count, int *eof, void *data);
135 typedef int cfs_write_proc_t(struct file *file, const char *buffer,
136                              unsigned long count, void *data);
137
138 #define CFS_PROC_ENTRY_MAGIC 'CPEM'
139
140 #define CFS_PROC_FLAG_DIRECTORY    0x00000001 // directory node
141 #define CFS_PROC_FLAG_ATTACHED     0x00000002 // node is attached to proc
142 #define CFS_PROC_FLAG_MISCDEV      0x00000004 // miscellaneous device
143
144 typedef struct cfs_proc_entry
145 {
146     ULONG                   magic;      // Magic
147     ULONG                   flags;      // Flags
148
149     struct _dir_entry {                 // proc directory entry
150         PRTL_SPLAY_LINKS    root;
151     };
152
153     struct cfs_proc_entry  *parent;
154
155     struct _file_entry {                // proc file / leaf entry
156             cfs_read_proc_t  *  read_proc;
157             cfs_write_proc_t *  write_proc;
158     };
159
160     mode_t                  mode;
161     unsigned short          nlink;
162     BOOLEAN                 deleted;
163
164         
165     struct file_operations *proc_fops;
166     void                   *data;
167
168     // proc_dir_entry ended.
169
170     RTL_SPLAY_LINKS         s_link;       // splay link
171
172     //
173     // Maximum length of proc entry name is 0x20
174     //
175
176     char                    name[0x20];
177
178 } cfs_proc_entry_t, cfs_proc_dir_entry_t;
179
180 typedef cfs_proc_entry_t cfs_proc_dir_entry_t;
181 #define proc_dir_entry cfs_proc_entry
182
183 #define PROC_BLOCK_SIZE    PAGE_SIZE
184
185 struct proc_dir_entry *PDE(const struct inode *inode);
186
187
188 /*
189  * Sysctl register
190  */
191
192 typedef struct ctl_table                cfs_sysctl_table_t;
193 typedef struct ctl_table_header         cfs_sysctl_table_header_t;
194
195
196 typedef int ctl_handler (
197             cfs_sysctl_table_t *table,
198             int *name,  int nlen,
199             void *oldval, size_t *oldlenp,
200             void *newval, size_t newlen, 
201             void **context );
202
203 typedef int proc_handler (
204             cfs_sysctl_table_t *ctl,
205             int write, struct file * filp,
206             void *buffer, size_t *lenp );
207
208
209 int proc_dointvec(cfs_sysctl_table_t *table, int write, struct file *filp,
210                      void *buffer, size_t *lenp);
211
212 int proc_dostring(cfs_sysctl_table_t *table, int write, struct file *filp,
213                   void *buffer, size_t *lenp);
214
215 int sysctl_string(cfs_sysctl_table_t *table, int *name, int nlen,
216                   void *oldval, size_t *oldlenp,
217                   void *newval, size_t newlen, void **context);
218
219 /*
220  *  System io control definitions
221  */
222
223 #define CTL_MAXNAME 10
224
225 #define CTL_ANY     -1  /* Matches any name */
226 #define CTL_NONE    0
227
228 enum
229 {
230     CTL_KERN=1,     /* General kernel info and control */
231     CTL_VM=2,       /* VM management */
232     CTL_NET=3,      /* Networking */
233     CTL_PROC=4,     /* Process info */
234     CTL_FS=5,       /* Filesystems */
235     CTL_DEBUG=6,        /* Debugging */
236     CTL_DEV=7,      /* Devices */
237     CTL_BUS=8,      /* Busses */
238     CTL_ABI=9,      /* Binary emulation */
239     CTL_CPU=10      /* CPU stuff (speed scaling, etc) */
240 };
241
242 /* sysctl table definitons */
243 struct ctl_table 
244 {
245         int ctl_name;
246         char *procname;
247         void *data;
248         int maxlen;
249         mode_t mode;
250         cfs_sysctl_table_t *child;
251         proc_handler *proc_handler;     /* text formatting callback */
252         ctl_handler *strategy;          /* read / write callback functions */
253         cfs_proc_entry_t *de;   /* proc entry block */
254         void *extra1;
255         void *extra2;
256 };
257
258
259 /* the mantaner of the cfs_sysctl_table trees */
260 struct ctl_table_header
261 {
262         cfs_sysctl_table_t *    ctl_table;
263         cfs_list_t              ctl_entry;
264 };
265
266 /* proc root entries, support routines */
267 extern cfs_proc_entry_t *  cfs_proc_root;   /* / */
268 extern cfs_proc_entry_t *  cfs_proc_proc;   /* /proc */
269 extern cfs_proc_entry_t *  cfs_proc_fs;     /* /proc/fs */
270 extern cfs_proc_entry_t *  cfs_proc_sys;    /* /proc/sys */
271 extern cfs_proc_entry_t *  cfs_proc_dev;    /* /dev */
272
273 cfs_proc_entry_t * create_proc_entry(const char *name, mode_t mod,
274                                           cfs_proc_entry_t *parent);
275 void proc_free_entry(cfs_proc_entry_t *de);
276 void remove_proc_entry(const char *name, cfs_proc_entry_t *entry);
277 cfs_proc_entry_t * search_proc_entry(const char * name,
278                         cfs_proc_entry_t *  root );
279 cfs_proc_entry_t *proc_symlink(const char *name,
280                                        cfs_proc_entry_t *parent,
281                                const char *dest);
282 cfs_proc_entry_t *proc_mkdir(const char *name,
283                                      cfs_proc_entry_t *parent);
284
285 #define cfs_create_proc_entry create_proc_entry
286 #define cfs_free_proc_entry   proc_free_entry
287 #define cfs_remove_proc_entry remove_proc_entry
288
289 struct ctl_table_header *register_sysctl_table(cfs_sysctl_table_t * table,
290                                                int insert_at_head);
291 void unregister_sysctl_table(struct ctl_table_header * header);
292
293 #define cfs_register_sysctl_table(t, a)   register_sysctl_table(t, a)
294 #define cfs_unregister_sysctl_table(t)    unregister_sysctl_table(t)
295
296 /*
297  * seq device (linux/seq_file.h)
298  */
299
300
301 /*
302  * seq file definitions
303  */
304
305 struct dentry;
306 struct vfsmount;
307
308 struct path {
309         struct vfsmount *mnt;
310         struct dentry *dentry;
311 };
312
313 struct seq_operations;
314 struct file;
315 struct inode;
316
317 struct seq_file {
318         char *buf;
319         size_t size;
320         size_t from;
321         size_t count;
322         loff_t index;
323         u32    version;
324         cfs_mutex_t lock;
325         const struct seq_operations *op;
326         void *private;
327 };
328
329 struct seq_operations {
330         void * (*start) (struct seq_file *m, loff_t *pos);
331         void (*stop) (struct seq_file *m, void *v);
332         void * (*next) (struct seq_file *m, void *v, loff_t *pos);
333         int (*show) (struct seq_file *m, void *v);
334 };
335
336 int seq_open(struct file *, const struct seq_operations *);
337 ssize_t seq_read(struct file *, char __user *, size_t, loff_t *);
338 loff_t seq_lseek(struct file *, loff_t, int);
339 int seq_release(struct inode *, struct file *);
340 int seq_escape(struct seq_file *, const char *, const char *);
341 int seq_putc(struct seq_file *m, char c);
342 int seq_puts(struct seq_file *m, const char *s);
343
344 int seq_printf(struct seq_file *, const char *, ...)
345         __attribute__ ((format (printf,2,3)));
346
347 int seq_path(struct seq_file *, struct path *, char *);
348
349 int single_open(struct file *, int (*)(struct seq_file *, void *), void *);
350 int single_release(struct inode *, struct file *);
351 void *__seq_open_private(struct file *, const struct seq_operations *, int);
352 int seq_open_private(struct file *, const struct seq_operations *, int);
353 int seq_release_private(struct inode *, struct file *);
354
355 #define SEQ_START_TOKEN ((void *)1)
356
357 /*
358  * Helpers for iteration over list_head-s in seq_files
359  */
360
361 extern cfs_list_t *seq_list_start(cfs_list_t *head, loff_t pos);
362 extern cfs_list_t *seq_list_start_head(cfs_list_t *head, loff_t pos);
363 extern cfs_list_t *seq_list_next(void *v, cfs_list_t *head, loff_t *ppos);
364
365 /*
366  *  declaration of proc kernel process routines
367  */
368
369 cfs_file_t *
370 lustre_open_file(char * filename);
371
372 int
373 lustre_close_file(cfs_file_t * fh);
374
375 int
376 lustre_do_ioctl( cfs_file_t * fh,
377                  unsigned long cmd,
378                  ulong_ptr_t arg );
379
380 int
381 lustre_ioctl_file( cfs_file_t * fh,
382                    PCFS_PROC_IOCTL devctl);
383
384 size_t
385 lustre_read_file( cfs_file_t *    fh,
386                   loff_t          offl,
387                   size_t          size,
388                   char *          buf
389                   );
390
391 size_t
392 lustre_write_file( cfs_file_t *    fh,
393                    loff_t          off,
394                    size_t          size,
395                    char *          buf
396                    );
397
398 /*
399  * Wait Queue
400  */
401
402
403 typedef int cfs_task_state_t;
404
405 #define CFS_TASK_INTERRUPTIBLE   0x00000001
406 #define CFS_TASK_UNINT           0x00000002
407 #define CFS_TASK_RUNNING         0x00000003
408 #define CFS_TASK_UNINTERRUPTIBLE CFS_TASK_UNINT
409
410 #define CFS_WAITQ_MAGIC     'CWQM'
411 #define CFS_WAITLINK_MAGIC  'CWLM'
412
413 typedef struct cfs_waitq {
414
415     unsigned int            magic;
416     unsigned int            flags;
417
418     cfs_spinlock_t          guard;
419     cfs_list_t              waiters;
420
421 } cfs_waitq_t;
422
423
424 typedef struct cfs_waitlink cfs_waitlink_t;
425
426 #define CFS_WAITQ_CHANNELS     (2)
427
428 #define CFS_WAITQ_CHAN_NORMAL  (0)
429 #define CFS_WAITQ_CHAN_FORWARD (1)
430
431
432
433 typedef struct cfs_waitlink_channel {
434     cfs_list_t              link;
435     cfs_waitq_t *           waitq;
436     cfs_waitlink_t *        waitl;
437 } cfs_waitlink_channel_t;
438
439 struct cfs_waitlink {
440
441     unsigned int            magic;
442     int                     flags;
443     event_t  *              event;
444     cfs_atomic_t *          hits;
445
446     cfs_waitlink_channel_t  waitq[CFS_WAITQ_CHANNELS];
447 };
448
449 enum {
450         CFS_WAITQ_EXCLUSIVE = 1
451 };
452
453 #define CFS_DECL_WAITQ(name) cfs_waitq_t name
454
455 /* Kernel thread */
456
457 typedef int (*cfs_thread_t) (void *arg);
458
459 typedef struct _cfs_thread_context {
460     cfs_thread_t        func;
461     void *              arg;
462 } cfs_thread_context_t;
463
464 int cfs_create_thread(int (*func)(void *), void *arg, unsigned long flag);
465
466 /*
467  * thread creation flags from Linux, not used in winnt
468  */
469 #define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
470 #define CLONE_VM        0x00000100      /* set if VM shared between processes */
471 #define CLONE_FS        0x00000200      /* set if fs info shared between processes */
472 #define CLONE_FILES     0x00000400      /* set if open files shared between processes */
473 #define CLONE_SIGHAND   0x00000800      /* set if signal handlers and blocked signals shared */
474 #define CLONE_PID       0x00001000      /* set if pid shared */
475 #define CLONE_PTRACE    0x00002000      /* set if we want to let tracing continue on the child too */
476 #define CLONE_VFORK     0x00004000      /* set if the parent wants the child to wake it up on mm_release */
477 #define CLONE_PARENT    0x00008000      /* set if we want to have the same parent as the cloner */
478 #define CLONE_THREAD    0x00010000      /* Same thread group? */
479 #define CLONE_NEWNS     0x00020000      /* New namespace group? */
480
481 #define CLONE_SIGNAL    (CLONE_SIGHAND | CLONE_THREAD)
482
483 #define CFS_DAEMON_FLAGS (CLONE_VM|CLONE_FILES)
484
485 /*
486  * group_info: linux/sched.h
487  */
488 #define NGROUPS_SMALL           32
489 #define NGROUPS_PER_BLOCK       ((int)(PAGE_SIZE / sizeof(gid_t)))
490 typedef struct cfs_group_info {
491         int ngroups;
492         cfs_atomic_t usage;
493         gid_t small_block[NGROUPS_SMALL];
494         int nblocks;
495         gid_t *blocks[0];
496 } cfs_group_info_t;
497
498 #define cfs_get_group_info(group_info) do { \
499         cfs_atomic_inc(&(group_info)->usage); \
500 } while (0)
501
502 #define cfs_put_group_info(group_info) do { \
503         if (cfs_atomic_dec_and_test(&(group_info)->usage)) \
504                 cfs_groups_free(group_info); \
505 } while (0)
506
507 static __inline cfs_group_info_t *cfs_groups_alloc(int gidsetsize)
508 {
509     cfs_group_info_t * groupinfo;
510     KdPrint(("%s(%d): %s NOT implemented.\n", __FILE__, __LINE__, __FUNCTION__));
511     groupinfo =
512         (cfs_group_info_t *)cfs_alloc(sizeof(cfs_group_info_t), 0);
513
514     if (groupinfo) {
515         memset(groupinfo, 0, sizeof(cfs_group_info_t));
516     }
517     return groupinfo;
518 }
519 static __inline void cfs_groups_free(cfs_group_info_t *group_info)
520 {
521     KdPrint(("%s(%d): %s NOT implemented.\n", __FILE__, __LINE__,
522             __FUNCTION__));
523     cfs_free(group_info);
524 }
525 static __inline int
526 cfs_set_current_groups(cfs_group_info_t *group_info)
527 {
528     KdPrint(("%s(%d): %s NOT implemented.\n", __FILE__, __LINE__,
529              __FUNCTION__));
530     return 0;
531 }
532 static __inline int groups_search(cfs_group_info_t *group_info,
533                                   gid_t grp) {
534     KdPrint(("%s(%d): %s NOT implemented.\n", __FILE__, __LINE__,
535             __FUNCTION__));
536     return 0;
537 }
538
539 /*
540  *   capability issue (linux/capability.h)
541  */
542
543 /* Override resource limits. Set resource limits. */
544 /* Override quota limits. */
545 /* Override reserved space on ext2 filesystem */
546 /* Modify data journaling mode on ext3 filesystem (uses journaling
547    resources) */
548 /* NOTE: ext2 honors fsuid when checking for resource overrides, so
549    you can override using fsuid too */
550 /* Override size restrictions on IPC message queues */
551 /* Allow more than 64hz interrupts from the real-time clock */
552 /* Override max number of consoles on console allocation */
553 /* Override max number of keymaps */
554
555 #define CAP_SYS_RESOURCE     24
556
557 /*
558  *  capabilities support 
559  */
560
561 typedef __u32 cfs_kernel_cap_t;
562
563 #define cap_raise(c, flag)  do {} while(0)
564 #define cap_lower(c, flag)  do {} while(0)
565 #define cap_raised(c, flag) do {} while(0)
566
567
568 /*
569  * Task struct
570  */
571
572 #define CFS_MAX_SCHEDULE_TIMEOUT     ((long_ptr_t)(~0UL>>12))
573 #define cfs_schedule_timeout(t)      cfs_schedule_timeout_and_set_state(0, t)
574
575 struct vfsmount;
576
577 #define NGROUPS 1
578 #define CFS_CURPROC_COMM_MAX (16)
579 typedef struct task_sruct{
580     mode_t                umask;
581     sigset_t              blocked;
582
583     pid_t                 pid;
584     pid_t                 pgrp;
585
586     uid_t                 uid,euid,suid,fsuid;
587     gid_t                 gid,egid,sgid,fsgid;
588
589     int                   ngroups;
590     int                   cgroups;
591     gid_t                 groups[NGROUPS];
592     cfs_group_info_t     *group_info;
593     cfs_kernel_cap_t      cap_effective,
594                           cap_inheritable,
595                           cap_permitted;
596
597     char                  comm[CFS_CURPROC_COMM_MAX];
598     void                 *journal_info;
599     struct vfsmount      *fs;
600 }  cfs_task_t;
601
602 static inline void task_lock(cfs_task_t *t)
603 {
604 }
605
606 static inline void task_unlock(cfs_task_t *t)
607 {
608 }
609
610 /*
611  *  linux task struct emulator ...
612  */
613
614 #define TASKMAN_MAGIC  'TMAN'   /* Task Manager */
615 #define TASKSLT_MAGIC  'TSLT'   /* Task Slot */
616
617 typedef struct _TASK_MAN {
618
619     ULONG           Magic;      /* Magic and Flags */
620     ULONG           Flags;
621
622     cfs_spinlock_t  Lock;       /* Protection lock */
623
624     cfs_mem_cache_t *slab; /* Memory slab for task slot */
625
626     ULONG           NumOfTasks; /* Total tasks (threads) */
627     LIST_ENTRY      TaskList;   /* List of task slots */
628
629 } TASK_MAN, *PTASK_MAN;
630
631 typedef struct _TASK_SLOT {
632
633     ULONG           Magic;      /* Magic and Flags */
634     ULONG           Flags;
635
636     LIST_ENTRY      Link;       /* To be linked to TaskMan */
637
638     event_t         Event;      /* Schedule event */
639
640     HANDLE          Pid;        /* Process id */
641     HANDLE          Tid;        /* Thread id */
642     PETHREAD        Tet;        /* Pointer to ethread */
643
644     cfs_atomic_t    count;      /* refer count */
645     cfs_atomic_t    hits;       /* times of waken event singaled */
646
647     KIRQL           irql;       /* irql for rwlock ... */
648
649     cfs_task_t      task;       /* linux task part */
650
651 } TASK_SLOT, *PTASK_SLOT;
652
653
654 #define current                      cfs_current()
655 #define cfs_set_current_state(s)     do {;} while (0)
656 #define cfs_set_current_state(state) cfs_set_current_state(state)
657
658 #define cfs_wait_event(wq, condition)                           \
659 do {                                                            \
660         cfs_waitlink_t __wait;                                  \
661                                                                 \
662         cfs_waitlink_init(&__wait);                             \
663         while (TRUE) {                                          \
664             cfs_waitq_add(&wq, &__wait);                        \
665             if (condition) {                                    \
666                 break;                                          \
667             }                                                   \
668             cfs_waitq_wait(&__wait, CFS_TASK_INTERRUPTIBLE);    \
669             cfs_waitq_del(&wq, &__wait);                        \
670         }                                                       \
671         cfs_waitq_del(&wq, &__wait);                            \
672 } while(0)
673
674 #define cfs_wait_event_interruptible(wq, condition, __ret)      \
675 do {                                                            \
676         cfs_waitlink_t __wait;                                  \
677                                                                 \
678         __ret = 0;                                              \
679         cfs_waitlink_init(&__wait);                             \
680         while (TRUE) {                                          \
681             cfs_waitq_add(&wq, &__wait);                        \
682             if (condition) {                                    \
683                 break;                                          \
684             }                                                   \
685             cfs_waitq_wait(&__wait, CFS_TASK_INTERRUPTIBLE);    \
686             cfs_waitq_del(&wq, &__wait);                        \
687         }                                                       \
688         cfs_waitq_del(&wq, &__wait);                            \
689 } while(0)
690
691 # define cfs_wait_event_interruptible_exclusive(wq, condition, rc)  \
692          cfs_wait_event_interruptible(wq, condition, rc)
693
694 /*
695    retval == 0; condition met; we're good.
696    retval < 0; interrupted by signal.
697    retval > 0; timed out.
698 */
699
700 #define cfs_waitq_wait_event_interruptible_timeout(             \
701                         wq, condition, timeout, rc)             \
702 do {                                                            \
703         cfs_waitlink_t __wait;                                  \
704                                                                 \
705         rc = 0;                                                 \
706         cfs_waitlink_init(&__wait);                             \
707         while (TRUE) {                                          \
708             cfs_waitq_add(&wq, &__wait);                        \
709             if (condition) {                                    \
710                 break;                                          \
711             }                                                   \
712             if (cfs_waitq_timedwait(&__wait,                    \
713                 CFS_TASK_INTERRUPTIBLE, timeout) == 0) {        \
714                 rc = TRUE;                                      \
715                 break;                                          \
716             }                                                   \
717             cfs_waitq_del(&wq, &__wait);                        \
718         }                                                       \
719         cfs_waitq_del(&wq, &__wait);                            \
720 } while(0)
721
722
723 #define cfs_waitq_wait_event_timeout                            \
724         cfs_waitq_wait_event_interruptible_timeout
725
726 int     init_task_manager();
727 void    cleanup_task_manager();
728 cfs_task_t * cfs_current();
729 int     wake_up_process(cfs_task_t * task);
730 void sleep_on(cfs_waitq_t *waitq);
731 #define cfs_might_sleep() do {} while(0)
732 #define CFS_DECL_JOURNAL_DATA   
733 #define CFS_PUSH_JOURNAL            do {;} while(0)
734 #define CFS_POP_JOURNAL             do {;} while(0)
735
736
737 /* module related definitions */
738
739 #ifndef __exit
740 #define __exit
741 #endif
742 #ifndef __init
743 #define __init
744 #endif
745
746 typedef struct cfs_module {
747     const char *name;
748 } cfs_module_t;
749
750 extern cfs_module_t libcfs_global_module;
751 #define THIS_MODULE  &libcfs_global_module
752
753 #define cfs_request_module(x, y) (0)
754 #define EXPORT_SYMBOL(s)
755 #define MODULE_AUTHOR(s)
756 #define MODULE_DESCRIPTION(s)
757 #define MODULE_LICENSE(s)
758 #define MODULE_PARM(a, b)
759 #define MODULE_PARM_DESC(a, b)
760
761 #define module_init(X) int  __init module_##X() {return X();}
762 #define module_exit(X) void __exit module_##X() {X();}
763
764 #define DECLARE_INIT(X) extern int  __init  module_##X(void)
765 #define DECLARE_EXIT(X) extern void __exit  module_##X(void)
766
767 #define MODULE_INIT(X) do { int rc = module_##X(); \
768                             if (rc) goto errorout; \
769                           } while(0)
770
771 #define MODULE_EXIT(X) do { module_##X(); } while(0)
772
773
774 /* Module interfaces */
775 #define cfs_module(name, version, init, fini) \
776         module_init(init);                    \
777         module_exit(fini)
778 #define cfs_module_refcount(x) (1)
779
780 /*
781  * typecheck
782  */
783
784 #define typecheck(a, b) do {} while(0)
785
786 /*
787  * linux/crypto.h
788  */
789
790 #define CRYPTO_MAX_ALG_NAME             64
791
792 #define CRYPTO_TFM_MODE_ECB             0x00000001
793 #define CRYPTO_TFM_MODE_CBC             0x00000002
794 #define CRYPTO_TFM_MODE_CFB             0x00000004
795 #define CRYPTO_TFM_MODE_CTR             0x00000008
796 #define CRYPTO_TFM_MODE_EME             0x00000010
797
798 /*
799  * hash
800  */
801 /* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
802 #define GOLDEN_RATIO_PRIME_32 0x9e370001UL
803
804 #if 0 /* defined in libcfs/libcfs_hash.h */
805 static inline u32 cfs_hash_long(u32 val, unsigned int bits)
806 {
807         /* On some cpus multiply is faster, on others gcc will do shifts */
808         u32 hash = val * GOLDEN_RATIO_PRIME_32;
809
810         /* High bits are more random, so use them. */
811         return hash >> (32 - bits);
812 }
813 #endif
814
815 /*
816  * Timer
817  */
818
819 #define CFS_TIMER_FLAG_INITED   0x00000001  // Initialized already
820 #define CFS_TIMER_FLAG_TIMERED  0x00000002  // KeSetTimer is called
821
822 typedef struct cfs_timer {
823
824     KSPIN_LOCK      Lock;
825
826     ULONG           Flags;
827
828     KDPC            Dpc;
829     KTIMER          Timer;
830
831     cfs_time_t      deadline;
832
833     void (*proc)(ulong_ptr_t);
834     void *          arg;
835
836 } cfs_timer_t;
837
838 /*
839  *  libcfs globals initialization/cleanup
840  */
841
842 int
843 libcfs_arch_init(void);
844
845 void
846 libcfs_arch_cleanup(void);
847
848 /*
849  *  cache alignment size
850  */
851
852 #define CFS_L1_CACHE_ALIGN(x) (x)
853
854 #define __cacheline_aligned
855
856 /*
857  * SMP ...
858  */
859
860
861 #define SMP_CACHE_BYTES             128
862 #define CFS_NR_CPUS                 (32)
863 #define smp_num_cpus                ((CCHAR)KeNumberProcessors)
864 #define cfs_num_possible_cpus()     smp_num_cpus
865 #define cfs_num_online_cpus()       smp_num_cpus
866 #define cfs_smp_processor_id()      ((USHORT)KeGetCurrentProcessorNumber())
867 #define smp_call_function(f, a, n, w)           do {} while(0)
868 #define smp_rmb()                   do {} while(0)
869
870 /*
871  *  Irp related
872  */
873
874 #define CFS_NR_IRQS                 512
875 #define cfs_in_interrupt()          (0)
876
877 /*
878  *  printk flags
879  */
880
881 #define CFS_KERN_EMERG      "<0>"   /* system is unusable                   */
882 #define CFS_KERN_ALERT      "<1>"   /* action must be taken immediately     */
883 #define CFS_KERN_CRIT       "<2>"   /* critical conditions                  */
884 #define CFS_KERN_ERR        "<3>"   /* error conditions                     */
885 #define CFS_KERN_WARNING    "<4>"   /* warning conditions                   */
886 #define CFS_KERN_NOTICE     "<5>"   /* normal but significant condition     */
887 #define CFS_KERN_INFO       "<6>"   /* informational                        */
888 #define CFS_KERN_DEBUG      "<7>"   /* debug-level messages                 */
889
890 /*
891  * Misc
892  */
893
894 #define inter_module_get(n)                     cfs_symbol_get(n)
895 #define inter_module_put(n)                     cfs_symbol_put(n)
896
897 #ifndef likely
898 #define likely(exp) (exp)
899 #endif
900 #ifndef unlikely
901 #define unlikely(exp) (exp)
902 #endif
903
904 #define cfs_lock_kernel()               do {} while(0)
905 #define cfs_unlock_kernel()             do {} while(0)
906
907 #define local_irq_save(x)
908 #define local_irq_restore(x)
909
910 #define THREAD_NAME
911
912 #define va_copy(_d, _s)                 (_d = _s)
913
914 char *strnchr(const char *s, size_t count, int c);
915
916 #define adler32(a,b,l) zlib_adler32(a,b,l)
917 ULONG zlib_adler32(ULONG adler, const BYTE *buf, UINT len);
918
919 typedef ssize_t (*read_actor_t)();
920
921 #if DBG
922 /*
923  *  winnt debug routines
924  */
925
926 VOID
927 KsPrintf(
928     LONG  DebugPrintLevel,
929     PCHAR DebugMessage,
930     ...
931     );
932
933 PUCHAR
934 KsNtStatusToString (IN NTSTATUS Status);
935 #endif
936
937 #else   /* !__KERNEL__ */
938
939 void cfs_enter_debugger();
940
941 /*
942  *  PAGE_SIZE ...
943  */
944
945 #ifndef PAGE_SIZE
946 #define PAGE_SIZE       (4096)
947 #endif
948
949 #define getpagesize()   (4096)
950
951 #define PAGE_CACHE_SIZE PAGE_SIZE
952 #define PAGE_CACHE_MASK PAGE_MASK
953
954 #define PTHREAD_MUTEX_INITIALIZER ((pthread_mutex_t) -1)
955 #define PTHREAD_RECURSIVE_MUTEX_INITIALIZER ((pthread_mutex_t) -2)
956 #define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER ((pthread_mutex_t) -3)
957
958 typedef struct file {
959     int foo;
960 } cfs_file_t;
961
962 #include "../user-prim.h"
963 #include "../user-lock.h"
964 #include <sys/stat.h>
965 #include <sys/types.h>
966
967 #define strcasecmp  strcmp
968 #define strncasecmp strncmp
969 #define getpid()   (0)
970
971 #define getuid()    (0)
972 #define getgrgid(x) (NULL)
973
974 struct passwd {
975         uid_t pw_uid;
976         char  pw_name[64];
977 };
978 struct passwd * getpwuid(uid_t uid);
979
980 int cfs_proc_mknod(const char *path, mode_t mode, dev_t dev);
981
982 int gethostname(char * name, int namelen);
983
984 #define setlinebuf(x) do {} while(0)
985
986
987 /* Maximum EA Information Length */
988 #define EA_MAX_LENGTH  (sizeof(FILE_FULL_EA_INFORMATION) + 15)
989
990 /*
991  *  proc user mode routines
992  */
993
994 int cfs_proc_open (char * filename, int oflag);
995 int cfs_proc_close(int fd);
996 int cfs_proc_read(int fd, void *buffer, unsigned int count);
997 int cfs_proc_write(int fd, void *buffer, unsigned int count);
998 int cfs_proc_ioctl(int fd, int cmd, void *buffer);
999 FILE *cfs_proc_fopen(char *path, char * mode);
1000 char *cfs_proc_fgets(char * buf, int len, FILE *fp);
1001 int cfs_proc_fclose(FILE *fp);
1002
1003 /* Bits set in the FLAGS argument to `glob'.  */
1004 #define GLOB_ERR        (1 << 0)/* Return on read errors.  */
1005 #define GLOB_MARK       (1 << 1)/* Append a slash to each name.  */
1006 #define GLOB_NOSORT     (1 << 2)/* Don't sort the names.  */
1007 #define GLOB_DOOFFS     (1 << 3)/* Insert PGLOB->gl_offs NULLs.  */
1008 #define GLOB_NOCHECK    (1 << 4)/* If nothing matches, return the pattern.  */
1009 #define GLOB_APPEND     (1 << 5)/* Append to results of a previous call.  */
1010 #define GLOB_NOESCAPE   (1 << 6)/* Backslashes don't quote metacharacters.  */
1011 #define GLOB_PERIOD     (1 << 7)/* Leading `.' can be matched by metachars.  */
1012
1013 #if !defined __USE_POSIX2 || defined __USE_BSD || defined __USE_GNU
1014 # define GLOB_MAGCHAR    (1 << 8)/* Set in gl_flags if any metachars seen.  */
1015 # define GLOB_ALTDIRFUNC (1 << 9)/* Use gl_opendir et al functions.  */
1016 # define GLOB_BRACE      (1 << 10)/* Expand "{a,b}" to "a" "b".  */
1017 # define GLOB_NOMAGIC    (1 << 11)/* If no magic chars, return the pattern.  */
1018 # define GLOB_TILDE      (1 << 12)/* Expand ~user and ~ to home directories. */
1019 # define GLOB_ONLYDIR    (1 << 13)/* Match only directories.  */
1020 # define GLOB_TILDE_CHECK (1 << 14)/* Like GLOB_TILDE but return an error
1021                                       if the user name is not available.  */
1022 # define __GLOB_FLAGS   (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| \
1023                          GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND|     \
1024                          GLOB_PERIOD|GLOB_ALTDIRFUNC|GLOB_BRACE|     \
1025                          GLOB_NOMAGIC|GLOB_TILDE|GLOB_ONLYDIR|GLOB_TILDE_CHECK)
1026 #else
1027 # define __GLOB_FLAGS   (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| \
1028                          GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND|     \
1029                          GLOB_PERIOD)
1030 #endif
1031
1032 /* Error returns from `glob'.  */
1033 #define GLOB_NOSPACE    1       /* Ran out of memory.  */
1034 #define GLOB_ABORTED    2       /* Read error.  */
1035 #define GLOB_NOMATCH    3       /* No matches found.  */
1036 #define GLOB_NOSYS      4       /* Not implemented.  */
1037 #ifdef __USE_GNU
1038 /* Previous versions of this file defined GLOB_ABEND instead of
1039    GLOB_ABORTED.  Provide a compatibility definition here.  */
1040 # define GLOB_ABEND GLOB_ABORTED
1041 #endif
1042
1043 /* Structure describing a globbing run.  */
1044 #ifdef __USE_GNU
1045 struct stat;
1046 #endif
1047 typedef struct
1048   {
1049     size_t gl_pathc;            /* Count of paths matched by the pattern.  */
1050     char **gl_pathv;            /* List of matched pathnames.  */
1051     size_t gl_offs;             /* Slots to reserve in `gl_pathv'.  */
1052     int gl_flags;               /* Set to FLAGS, maybe | GLOB_MAGCHAR.  */
1053
1054     /* If the GLOB_ALTDIRFUNC flag is set, the following functions
1055        are used instead of the normal file access functions.  */
1056     void (*gl_closedir) (void *);
1057 #ifdef __USE_GNU
1058     struct dirent *(*gl_readdir) (void *);
1059 #else
1060     void *(*gl_readdir) (void *);
1061 #endif
1062     void *(*gl_opendir) (const char *);
1063 #ifdef __USE_GNU
1064     int (*gl_lstat) (const char *__restrict, struct stat *__restrict);
1065     int (*gl_stat) (const char *__restrict, struct stat *__restrict);
1066 #else
1067     int (*gl_lstat) (const char *__restrict, void *__restrict);
1068     int (*gl_stat) (const char *__restrict, void *__restrict);
1069 #endif
1070   } glob_t;
1071
1072 #ifdef __USE_LARGEFILE64
1073 # ifdef __USE_GNU
1074 struct stat64;
1075 # endif
1076 typedef struct
1077   {
1078     __size_t gl_pathc;
1079     char **gl_pathv;
1080     __size_t gl_offs;
1081     int gl_flags;
1082
1083     /* If the GLOB_ALTDIRFUNC flag is set, the following functions
1084        are used instead of the normal file access functions.  */
1085     void (*gl_closedir) (void *);
1086 # ifdef __USE_GNU
1087     struct dirent64 *(*gl_readdir) (void *);
1088 # else
1089     void *(*gl_readdir) (void *);
1090 # endif
1091     void *(*gl_opendir) (__const char *);
1092 # ifdef __USE_GNU
1093     int (*gl_lstat) (__const char *__restrict, struct stat64 *__restrict);
1094     int (*gl_stat) (__const char *__restrict, struct stat64 *__restrict);
1095 # else
1096     int (*gl_lstat) (__const char *__restrict, void *__restrict);
1097     int (*gl_stat) (__const char *__restrict, void *__restrict);
1098 # endif
1099   } glob64_t;
1100 #endif
1101
1102 int glob (const char * __pattern, int __flags,
1103                  int (*__errfunc) (const char *, int),
1104                  glob_t * __pglob);
1105 void globfree(glob_t *__pglog);
1106
1107 #endif /* !__KERNEL__ */
1108
1109 /*
1110  *  module routines
1111  */
1112
1113 static inline void __cfs_module_get(cfs_module_t *module)
1114 {
1115 }
1116
1117 static inline int cfs_try_module_get(cfs_module_t *module)
1118 {
1119     return 1;
1120 }
1121
1122 static inline void cfs_module_put(cfs_module_t *module)
1123 {
1124 }
1125
1126 /*
1127  *  sigset_t routines 
1128  */
1129
1130 typedef sigset_t cfs_sigset_t;
1131 #define sigaddset(what,sig) (*(what) |= (1<<(sig)), 0)
1132 #define sigdelset(what,sig) (*(what) &= ~(1<<(sig)), 0)
1133 #define sigemptyset(what)   (*(what) = 0, 0)
1134 #define sigfillset(what)    (*(what) = ~(0), 0)
1135 #define sigismember(what,sig) (((*(what)) & (1<<(sig))) != 0)
1136
1137 static __inline int
1138 sigprocmask(int sig, cfs_sigset_t *w1, cfs_sigset_t *w2) {
1139     return 0;
1140 }
1141 static __inline int
1142 sigpending(cfs_sigset_t *what) {
1143     return 0;
1144 }
1145
1146 /*
1147  * common inode flags (user & kernel)
1148  */
1149
1150 #define S_ISLNK(m)      (((m) & S_IFMT) == S_IFLNK)
1151 #define S_ISREG(m)      (((m) & S_IFMT) == S_IFREG)
1152 #define S_ISDIR(m)      (((m) & S_IFMT) == S_IFDIR)
1153 #define S_ISCHR(m)      (((m) & S_IFMT) == S_IFCHR)
1154 #define S_ISBLK(m)      (((m) & S_IFMT) == S_IFBLK)
1155 #define S_ISFIFO(m)     (((m) & S_IFMT) == S_IFIFO)
1156 #define S_ISSOCK(m)     (((m) & S_IFMT) == S_IFSOCK)
1157
1158 #define S_IRWXU 00700
1159 #define S_IRUSR 00400
1160 #define S_IWUSR 00200
1161 #define S_IXUSR 00100
1162
1163 #define S_IRWXG 00070
1164 #define S_IRGRP 00040
1165 #define S_IWGRP 00020
1166 #define S_IXGRP 00010
1167
1168 #define S_IRWXO 00007
1169 #define S_IROTH 00004
1170 #define S_IWOTH 00002
1171 #define S_IXOTH 00001
1172
1173 #define S_IRWXUGO   (S_IRWXU|S_IRWXG|S_IRWXO)
1174 #define S_IALLUGO   (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
1175 #define S_IRUGO     (S_IRUSR|S_IRGRP|S_IROTH)
1176 #define S_IWUGO     (S_IWUSR|S_IWGRP|S_IWOTH)
1177 #define S_IXUGO     (S_IXUSR|S_IXGRP|S_IXOTH)
1178
1179
1180 /*
1181  *  Linux kernel version definition
1182  */
1183
1184 #define KERNEL_VERSION(a,b,c) ((a)*100+(b)*10+c)
1185
1186 /*
1187  *  linux ioctl coding definitions
1188  */
1189  
1190 #define _IOC_NRBITS 8
1191 #define _IOC_TYPEBITS   8
1192 #define _IOC_SIZEBITS   14
1193 #define _IOC_DIRBITS    2
1194
1195 #define _IOC_NRMASK     ((1 << _IOC_NRBITS)-1)
1196 #define _IOC_TYPEMASK   ((1 << _IOC_TYPEBITS)-1)
1197 #define _IOC_SIZEMASK   ((1 << _IOC_SIZEBITS)-1)
1198 #define _IOC_DIRMASK    ((1 << _IOC_DIRBITS)-1)
1199
1200 #define _IOC_NRSHIFT    0
1201 #define _IOC_TYPESHIFT  (_IOC_NRSHIFT+_IOC_NRBITS)
1202 #define _IOC_SIZESHIFT  (_IOC_TYPESHIFT+_IOC_TYPEBITS)
1203 #define _IOC_DIRSHIFT   (_IOC_SIZESHIFT+_IOC_SIZEBITS)
1204
1205 /*
1206  * Direction bits.
1207  */
1208 #define _IOC_NONE   0U
1209 #define _IOC_WRITE  1U
1210 #define _IOC_READ   2U
1211
1212 #define _IOC(dir,type,nr,size) \
1213     (((dir)  << _IOC_DIRSHIFT) | \
1214      ((type) << _IOC_TYPESHIFT) | \
1215      ((nr)   << _IOC_NRSHIFT) | \
1216      ((size) << _IOC_SIZESHIFT))
1217
1218 /* used to create numbers */
1219 #define _IO(type,nr)      _IOC(_IOC_NONE,(type),(nr),0)
1220 #define _IOR(type,nr,size)    _IOC(_IOC_READ,(type),(nr),sizeof(size))
1221 #define _IOW(type,nr,size)    _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
1222 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
1223
1224 /* used to decode ioctl numbers.. */
1225 #define _IOC_DIR(nr)        (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
1226 #define _IOC_TYPE(nr)       (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
1227 #define _IOC_NR(nr)         (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
1228 #define _IOC_SIZE(nr)       (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
1229
1230 /* i/o vector sgructure ... */
1231 struct iovec {
1232     void *iov_base;
1233     size_t iov_len;
1234 };
1235
1236 /* idr support routines */
1237 struct idr_context *cfs_idr_init();
1238 int cfs_idr_remove(struct idr_context *idp, int id);
1239 int cfs_idr_get_new(struct idr_context *idp, void *ptr);
1240 int cfs_idr_get_new_above(struct idr_context *idp, void *ptr, int starting_id);
1241 void *cfs_idr_find(struct idr_context *idp, int id);
1242 void cfs_idr_exit(struct idr_context *idp);
1243
1244 /* runtime time routines for both kenrel and user mode */
1245 extern int cfs_isalpha(int);
1246 extern int cfs_isspace(int);
1247 extern int cfs_isupper(int);
1248 extern int cfs_isdigit(int);
1249 extern int cfs_isxdigit(int);
1250
1251 #define ULONG_LONG_MAX ((__u64)(0xFFFFFFFFFFFFFFFF))
1252 /*
1253  * Convert a string to an unsigned long long integer.
1254  *
1255  * Ignores `locale' stuff.  Assumes that the upper and lower case
1256  * alphabets and digits are each contiguous.
1257  */
1258 __u64 strtoull(char *nptr, char **endptr,int base);
1259
1260 /*
1261  *  getopt routines
1262  */
1263
1264 /* For communication from `getopt' to the caller.
1265    When `getopt' finds an option that takes an argument,
1266    the argument value is returned here.
1267    Also, when `ordering' is RETURN_IN_ORDER,
1268    each non-option ARGV-element is returned here.  */
1269
1270 extern char *optarg;
1271
1272 /* Index in ARGV of the next element to be scanned.
1273    This is used for communication to and from the caller
1274    and for communication between successive calls to `getopt'.
1275
1276    On entry to `getopt', zero means this is the first call; initialize.
1277
1278    When `getopt' returns -1, this is the index of the first of the
1279    non-option elements that the caller should itself scan.
1280
1281    Otherwise, `optind' communicates from one call to the next
1282    how much of ARGV has been scanned so far.  */
1283
1284 extern int optind;
1285
1286 /* Callers store zero here to inhibit the error message `getopt' prints
1287    for unrecognized options.  */
1288
1289 extern int opterr;
1290
1291 /* Set to an option character which was unrecognized.  */
1292
1293 extern int optopt;
1294
1295
1296 struct option
1297 {
1298   const char *name;
1299   /* has_arg can't be an enum because some compilers complain about
1300      type mismatches in all the code that assumes it is an int.  */
1301   int has_arg;
1302   int *flag;
1303   int val;
1304 };
1305
1306 /* Names for the values of the `has_arg' field of `struct option'.  */
1307 # define no_argument            0
1308 # define required_argument      1
1309 # define optional_argument      2
1310
1311 extern int getopt(int ___argc, char *const *___argv, const char *__shortopts);
1312 extern int getopt_long (int ___argc, char *const *___argv,
1313                         const char *__shortopts,
1314                         const struct option *__longopts, int *__longind);
1315 extern int getopt_long_only (int ___argc, char *const *___argv,
1316                              const char *__shortopts,
1317                              const struct option *__longopts, int *__longind);
1318
1319 extern char *strcasestr (const char *phaystack, const char *pneedle);
1320
1321 /*
1322  * global environment runtime routine
1323  */
1324
1325 static __inline char * __cdecl cfs_getenv(const char *ENV) {return NULL;}
1326 static __inline void   __cdecl set_getenv(const char *ENV, const char *value, int overwrite) {}
1327
1328 int setenv(const char *envname, const char *envval, int overwrite);
1329
1330 typedef struct utsname {
1331          char sysname[64];
1332          char nodename[64];
1333          char release[128];
1334          char version[128];
1335          char machine[64];
1336 };
1337
1338 int uname(struct utsname *uts);
1339
1340 #endif