blob: ea2332e16af999666a82ebaa6eb5b677ff03957f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Mike Marshallf7ab0932015-07-17 10:38:11 -04002/*
3 * (C) 2001 Clemson University and The University of Chicago
4 *
5 * See COPYING in top-level directory.
6 */
7
8/*
9 * Definitions of downcalls used in Linux kernel module.
10 */
11
12#ifndef __DOWNCALL_H
13#define __DOWNCALL_H
14
15/*
16 * Sanitized the device-client core interaction
17 * for clean 32-64 bit usage
18 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050019struct orangefs_io_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040020 __s64 amt_complete;
21};
22
Yi Liu8bb8aef2015-11-24 15:12:14 -050023struct orangefs_lookup_response {
24 struct orangefs_object_kref refn;
Mike Marshallf7ab0932015-07-17 10:38:11 -040025};
26
Yi Liu8bb8aef2015-11-24 15:12:14 -050027struct orangefs_create_response {
28 struct orangefs_object_kref refn;
Mike Marshallf7ab0932015-07-17 10:38:11 -040029};
30
Yi Liu8bb8aef2015-11-24 15:12:14 -050031struct orangefs_symlink_response {
32 struct orangefs_object_kref refn;
Mike Marshallf7ab0932015-07-17 10:38:11 -040033};
34
Yi Liu8bb8aef2015-11-24 15:12:14 -050035struct orangefs_getattr_response {
36 struct ORANGEFS_sys_attr_s attributes;
Martin Brandenburg47b49482016-02-20 14:22:40 -050037 char link_target[ORANGEFS_NAME_MAX];
Mike Marshallf7ab0932015-07-17 10:38:11 -040038};
39
Yi Liu8bb8aef2015-11-24 15:12:14 -050040struct orangefs_mkdir_response {
41 struct orangefs_object_kref refn;
Mike Marshallf7ab0932015-07-17 10:38:11 -040042};
43
Yi Liu8bb8aef2015-11-24 15:12:14 -050044struct orangefs_statfs_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040045 __s64 block_size;
46 __s64 blocks_total;
47 __s64 blocks_avail;
48 __s64 files_total;
49 __s64 files_avail;
50};
51
Yi Liu8bb8aef2015-11-24 15:12:14 -050052struct orangefs_fs_mount_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040053 __s32 fs_id;
54 __s32 id;
Yi Liu8bb8aef2015-11-24 15:12:14 -050055 struct orangefs_khandle root_khandle;
Mike Marshallf7ab0932015-07-17 10:38:11 -040056};
57
58/* the getxattr response is the attribute value */
Yi Liu8bb8aef2015-11-24 15:12:14 -050059struct orangefs_getxattr_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040060 __s32 val_sz;
61 __s32 __pad1;
Yi Liu8bb8aef2015-11-24 15:12:14 -050062 char val[ORANGEFS_MAX_XATTR_VALUELEN];
Mike Marshallf7ab0932015-07-17 10:38:11 -040063};
64
65/* the listxattr response is an array of attribute names */
Yi Liu8bb8aef2015-11-24 15:12:14 -050066struct orangefs_listxattr_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040067 __s32 returned_count;
68 __s32 __pad1;
69 __u64 token;
Yi Liu8bb8aef2015-11-24 15:12:14 -050070 char key[ORANGEFS_MAX_XATTR_LISTLEN * ORANGEFS_MAX_XATTR_NAMELEN];
Mike Marshallf7ab0932015-07-17 10:38:11 -040071 __s32 keylen;
72 __s32 __pad2;
Yi Liu8bb8aef2015-11-24 15:12:14 -050073 __s32 lengths[ORANGEFS_MAX_XATTR_LISTLEN];
Mike Marshallf7ab0932015-07-17 10:38:11 -040074};
75
Yi Liu8bb8aef2015-11-24 15:12:14 -050076struct orangefs_param_response {
Martin Brandenburg680908e2016-08-02 16:33:34 -040077 union {
78 __s64 value64;
79 __s32 value32[2];
80 } u;
Mike Marshallf7ab0932015-07-17 10:38:11 -040081};
82
83#define PERF_COUNT_BUF_SIZE 4096
Yi Liu8bb8aef2015-11-24 15:12:14 -050084struct orangefs_perf_count_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040085 char buffer[PERF_COUNT_BUF_SIZE];
86};
87
88#define FS_KEY_BUF_SIZE 4096
Yi Liu8bb8aef2015-11-24 15:12:14 -050089struct orangefs_fs_key_response {
Mike Marshallf7ab0932015-07-17 10:38:11 -040090 __s32 fs_keylen;
91 __s32 __pad1;
92 char fs_key[FS_KEY_BUF_SIZE];
93};
94
Martin Brandenburg482664d2016-08-12 12:02:31 -040095/* 2.9.6 */
96struct orangefs_features_response {
97 __u64 features;
98};
99
Yi Liu8bb8aef2015-11-24 15:12:14 -0500100struct orangefs_downcall_s {
Mike Marshallf7ab0932015-07-17 10:38:11 -0400101 __s32 type;
102 __s32 status;
103 /* currently trailer is used only by readdir */
104 __s64 trailer_size;
Mike Marshall54804942015-10-05 13:44:24 -0400105 char *trailer_buf;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400106
107 union {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500108 struct orangefs_io_response io;
109 struct orangefs_lookup_response lookup;
110 struct orangefs_create_response create;
111 struct orangefs_symlink_response sym;
112 struct orangefs_getattr_response getattr;
113 struct orangefs_mkdir_response mkdir;
114 struct orangefs_statfs_response statfs;
115 struct orangefs_fs_mount_response fs_mount;
116 struct orangefs_getxattr_response getxattr;
117 struct orangefs_listxattr_response listxattr;
118 struct orangefs_param_response param;
119 struct orangefs_perf_count_response perf_count;
120 struct orangefs_fs_key_response fs_key;
Martin Brandenburg482664d2016-08-12 12:02:31 -0400121 struct orangefs_features_response features;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400122 } resp;
123};
124
Martin Brandenburg382f4582017-04-25 15:37:59 -0400125/*
126 * The readdir response comes in the trailer. It is followed by the
127 * directory entries as described in dir.c.
128 */
129
Yi Liu8bb8aef2015-11-24 15:12:14 -0500130struct orangefs_readdir_response_s {
Mike Marshallf7ab0932015-07-17 10:38:11 -0400131 __u64 token;
132 __u64 directory_version;
133 __u32 __pad2;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500134 __u32 orangefs_dirent_outcount;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400135};
136
137#endif /* __DOWNCALL_H */