Whamcloud - gitweb
LU-3289 gss: Add Shared key and GSS Null functionality
[fs/lustre-release.git] / lustre / include / lustre_sec.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LUSTRE_SEC_H_
38 #define _LUSTRE_SEC_H_
39
40 /** \defgroup sptlrpc sptlrpc
41  *
42  * @{
43  */
44
45 /*
46  * to avoid include
47  */
48 struct obd_import;
49 struct obd_export;
50 struct ptlrpc_request;
51 struct ptlrpc_reply_state;
52 struct ptlrpc_bulk_desc;
53 struct brw_page;
54 /* Linux specific */
55 struct key;
56 struct seq_file;
57 struct lustre_cfg;
58
59 /*
60  * forward declaration
61  */
62 struct ptlrpc_sec_policy;
63 struct ptlrpc_sec_cops;
64 struct ptlrpc_sec_sops;
65 struct ptlrpc_sec;
66 struct ptlrpc_svc_ctx;
67 struct ptlrpc_cli_ctx;
68 struct ptlrpc_ctx_ops;
69
70 /**
71  * \addtogroup flavor flavor
72  *
73  * RPC flavor is represented by a 32 bits integer. Currently the high 12 bits
74  * are unused, must be set to 0 for future expansion.
75  * <pre>
76  * ------------------------------------------------------------------------
77  * | 4b (bulk svc) | 4b (bulk type) | 4b (svc) | 4b (mech)  | 4b (policy) |
78  * ------------------------------------------------------------------------
79  * </pre>
80  *
81  * @{
82  */
83
84 /*
85  * flavor constants
86  */
87 enum sptlrpc_policy {
88         SPTLRPC_POLICY_NULL             = 0,
89         SPTLRPC_POLICY_PLAIN            = 1,
90         SPTLRPC_POLICY_GSS              = 2,
91         SPTLRPC_POLICY_MAX,
92 };
93
94 enum sptlrpc_mech_null {
95         SPTLRPC_MECH_NULL               = 0,
96         SPTLRPC_MECH_NULL_MAX,
97 };
98
99 enum sptlrpc_mech_plain {
100         SPTLRPC_MECH_PLAIN              = 0,
101         SPTLRPC_MECH_PLAIN_MAX,
102 };
103
104 enum sptlrpc_mech_gss {
105         SPTLRPC_MECH_GSS_NULL           = 0,
106         SPTLRPC_MECH_GSS_KRB5           = 1,
107         SPTLRPC_MECH_GSS_SK             = 2,
108         SPTLRPC_MECH_GSS_MAX,
109 };
110
111 enum sptlrpc_service_type {
112         SPTLRPC_SVC_NULL                = 0,    /**< no security */
113         SPTLRPC_SVC_AUTH                = 1,    /**< authentication only */
114         SPTLRPC_SVC_INTG                = 2,    /**< integrity */
115         SPTLRPC_SVC_PRIV                = 3,    /**< privacy */
116         SPTLRPC_SVC_MAX,
117 };
118
119 enum sptlrpc_bulk_type {
120         SPTLRPC_BULK_DEFAULT            = 0,    /**< follow rpc flavor */
121         SPTLRPC_BULK_HASH               = 1,    /**< hash integrity */
122         SPTLRPC_BULK_MAX,
123 };
124
125 enum sptlrpc_bulk_service {
126         SPTLRPC_BULK_SVC_NULL           = 0,    /**< no security */
127         SPTLRPC_BULK_SVC_AUTH           = 1,    /**< authentication only */
128         SPTLRPC_BULK_SVC_INTG           = 2,    /**< integrity */
129         SPTLRPC_BULK_SVC_PRIV           = 3,    /**< privacy */
130         SPTLRPC_BULK_SVC_MAX,
131 };
132
133 /*
134  * compose/extract macros
135  */
136 #define FLVR_POLICY_OFFSET              (0)
137 #define FLVR_MECH_OFFSET                (4)
138 #define FLVR_SVC_OFFSET                 (8)
139 #define FLVR_BULK_TYPE_OFFSET           (12)
140 #define FLVR_BULK_SVC_OFFSET            (16)
141
142 #define MAKE_FLVR(policy, mech, svc, btype, bsvc)                       \
143         (((__u32)(policy) << FLVR_POLICY_OFFSET) |                      \
144          ((__u32)(mech) << FLVR_MECH_OFFSET) |                          \
145          ((__u32)(svc) << FLVR_SVC_OFFSET) |                            \
146          ((__u32)(btype) << FLVR_BULK_TYPE_OFFSET) |                    \
147          ((__u32)(bsvc) << FLVR_BULK_SVC_OFFSET))
148
149 /*
150  * extraction
151  */
152 #define SPTLRPC_FLVR_POLICY(flavor)                                     \
153         ((((__u32)(flavor)) >> FLVR_POLICY_OFFSET) & 0xF)
154 #define SPTLRPC_FLVR_MECH(flavor)                                       \
155         ((((__u32)(flavor)) >> FLVR_MECH_OFFSET) & 0xF)
156 #define SPTLRPC_FLVR_SVC(flavor)                                        \
157         ((((__u32)(flavor)) >> FLVR_SVC_OFFSET) & 0xF)
158 #define SPTLRPC_FLVR_BULK_TYPE(flavor)                                  \
159         ((((__u32)(flavor)) >> FLVR_BULK_TYPE_OFFSET) & 0xF)
160 #define SPTLRPC_FLVR_BULK_SVC(flavor)                                   \
161         ((((__u32)(flavor)) >> FLVR_BULK_SVC_OFFSET) & 0xF)
162
163 #define SPTLRPC_FLVR_BASE(flavor)                                       \
164         ((((__u32)(flavor)) >> FLVR_POLICY_OFFSET) & 0xFFF)
165 #define SPTLRPC_FLVR_BASE_SUB(flavor)                                   \
166         ((((__u32)(flavor)) >> FLVR_MECH_OFFSET) & 0xFF)
167
168 /*
169  * gss subflavors
170  */
171 #define MAKE_BASE_SUBFLVR(mech, svc)                                    \
172         ((__u32)(mech) |                                                \
173          ((__u32)(svc) << (FLVR_SVC_OFFSET - FLVR_MECH_OFFSET)))
174
175 #define SPTLRPC_SUBFLVR_GSSNULL                                         \
176         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_NULL, SPTLRPC_SVC_NULL)
177 #define SPTLRPC_SUBFLVR_KRB5N                                           \
178         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_KRB5, SPTLRPC_SVC_NULL)
179 #define SPTLRPC_SUBFLVR_KRB5A                                           \
180         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_KRB5, SPTLRPC_SVC_AUTH)
181 #define SPTLRPC_SUBFLVR_KRB5I                                           \
182         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_KRB5, SPTLRPC_SVC_INTG)
183 #define SPTLRPC_SUBFLVR_KRB5P                                           \
184         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_KRB5, SPTLRPC_SVC_PRIV)
185 #define SPTLRPC_SUBFLVR_SKI                                             \
186         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_SK, SPTLRPC_SVC_INTG)
187 #define SPTLRPC_SUBFLVR_SKPI                                            \
188         MAKE_BASE_SUBFLVR(SPTLRPC_MECH_GSS_SK, SPTLRPC_SVC_PRIV)
189
190 /*
191  * "end user" flavors
192  */
193 #define SPTLRPC_FLVR_NULL                               \
194         MAKE_FLVR(SPTLRPC_POLICY_NULL,                  \
195                   SPTLRPC_MECH_NULL,                    \
196                   SPTLRPC_SVC_NULL,                     \
197                   SPTLRPC_BULK_DEFAULT,                 \
198                   SPTLRPC_BULK_SVC_NULL)
199 #define SPTLRPC_FLVR_PLAIN                              \
200         MAKE_FLVR(SPTLRPC_POLICY_PLAIN,                 \
201                   SPTLRPC_MECH_PLAIN,                   \
202                   SPTLRPC_SVC_NULL,                     \
203                   SPTLRPC_BULK_HASH,                    \
204                   SPTLRPC_BULK_SVC_INTG)
205 #define SPTLRPC_FLVR_GSSNULL                            \
206         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
207                   SPTLRPC_MECH_GSS_NULL,                \
208                   SPTLRPC_SVC_NULL,                     \
209                   SPTLRPC_BULK_DEFAULT,                 \
210                   SPTLRPC_BULK_SVC_NULL)
211 #define SPTLRPC_FLVR_KRB5N                              \
212         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
213                   SPTLRPC_MECH_GSS_KRB5,                \
214                   SPTLRPC_SVC_NULL,                     \
215                   SPTLRPC_BULK_DEFAULT,                 \
216                   SPTLRPC_BULK_SVC_NULL)
217 #define SPTLRPC_FLVR_KRB5A                              \
218         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
219                   SPTLRPC_MECH_GSS_KRB5,                \
220                   SPTLRPC_SVC_AUTH,                     \
221                   SPTLRPC_BULK_DEFAULT,                 \
222                   SPTLRPC_BULK_SVC_NULL)
223 #define SPTLRPC_FLVR_KRB5I                              \
224         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
225                   SPTLRPC_MECH_GSS_KRB5,                \
226                   SPTLRPC_SVC_INTG,                     \
227                   SPTLRPC_BULK_DEFAULT,                 \
228                   SPTLRPC_BULK_SVC_INTG)
229 #define SPTLRPC_FLVR_KRB5P                              \
230         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
231                   SPTLRPC_MECH_GSS_KRB5,                \
232                   SPTLRPC_SVC_PRIV,                     \
233                   SPTLRPC_BULK_DEFAULT,                 \
234                   SPTLRPC_BULK_SVC_PRIV)
235 #define SPTLRPC_FLVR_SKI                                \
236         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
237                   SPTLRPC_MECH_GSS_SK,                  \
238                   SPTLRPC_SVC_INTG,                     \
239                   SPTLRPC_BULK_DEFAULT,                 \
240                   SPTLRPC_BULK_SVC_INTG)
241 #define SPTLRPC_FLVR_SKPI                               \
242         MAKE_FLVR(SPTLRPC_POLICY_GSS,                   \
243                   SPTLRPC_MECH_GSS_SK,                  \
244                   SPTLRPC_SVC_PRIV,                     \
245                   SPTLRPC_BULK_DEFAULT,                 \
246                   SPTLRPC_BULK_SVC_PRIV)
247
248 #define SPTLRPC_FLVR_DEFAULT            SPTLRPC_FLVR_NULL
249
250 #define SPTLRPC_FLVR_INVALID            ((__u32) 0xFFFFFFFF)
251 #define SPTLRPC_FLVR_ANY                ((__u32) 0xFFF00000)
252
253 /**
254  * extract the useful part from wire flavor
255  */
256 #define WIRE_FLVR(wflvr)                (((__u32) (wflvr)) & 0x000FFFFF)
257
258 /** @} flavor */
259
260 static inline void flvr_set_svc(__u32 *flvr, __u32 svc)
261 {
262         LASSERT(svc < SPTLRPC_SVC_MAX);
263         *flvr = MAKE_FLVR(SPTLRPC_FLVR_POLICY(*flvr),
264                           SPTLRPC_FLVR_MECH(*flvr),
265                           svc,
266                           SPTLRPC_FLVR_BULK_TYPE(*flvr),
267                           SPTLRPC_FLVR_BULK_SVC(*flvr));
268 }
269
270 static inline void flvr_set_bulk_svc(__u32 *flvr, __u32 svc)
271 {
272         LASSERT(svc < SPTLRPC_BULK_SVC_MAX);
273         *flvr = MAKE_FLVR(SPTLRPC_FLVR_POLICY(*flvr),
274                           SPTLRPC_FLVR_MECH(*flvr),
275                           SPTLRPC_FLVR_SVC(*flvr),
276                           SPTLRPC_FLVR_BULK_TYPE(*flvr),
277                           svc);
278 }
279
280 struct bulk_spec_hash {
281         __u8    hash_alg;
282 };
283
284 /**
285  * Full description of flavors being used on a ptlrpc connection, include
286  * both regular RPC and bulk transfer parts.
287  */
288 struct sptlrpc_flavor {
289         /**
290          * wire flavor, should be renamed to sf_wire.
291          */
292         __u32   sf_rpc;
293         /**
294          * general flags of PTLRPC_SEC_FL_*
295          */
296         __u32   sf_flags;
297         /**
298          * rpc flavor specification
299          */
300         union {
301                 /* nothing for now */
302         } u_rpc;
303         /**
304          * bulk flavor specification
305          */
306         union {
307                 struct bulk_spec_hash hash;
308         } u_bulk;
309 };
310
311 /**
312  * identify the RPC is generated from what part of Lustre. It's encoded into
313  * RPC requests and to be checked by ptlrpc service.
314  */
315 enum lustre_sec_part {
316         LUSTRE_SP_CLI           = 0,
317         LUSTRE_SP_MDT,
318         LUSTRE_SP_OST,
319         LUSTRE_SP_MGC,
320         LUSTRE_SP_MGS,
321         LUSTRE_SP_ANY           = 0xFF
322 };
323
324 const char *sptlrpc_part2name(enum lustre_sec_part sp);
325 enum lustre_sec_part sptlrpc_target_sec_part(struct obd_device *obd);
326
327 /**
328  * A rule specifies a flavor to be used by a ptlrpc connection between
329  * two Lustre parts.
330  */
331 struct sptlrpc_rule {
332         __u32                   sr_netid;   /* LNET network ID */
333         __u8                    sr_from;    /* sec_part */
334         __u8                    sr_to;      /* sec_part */
335         __u16                   sr_padding;
336         struct sptlrpc_flavor   sr_flvr;
337 };
338
339 /**
340  * A set of rules in memory.
341  *
342  * Rules are generated and stored on MGS, and propagated to MDT, OST,
343  * and client when needed.
344  */
345 struct sptlrpc_rule_set {
346         int                     srs_nslot;
347         int                     srs_nrule;
348         struct sptlrpc_rule    *srs_rules;
349 };
350
351 int sptlrpc_parse_flavor(const char *str, struct sptlrpc_flavor *flvr);
352 int sptlrpc_flavor_has_bulk(struct sptlrpc_flavor *flvr);
353
354 static inline void sptlrpc_rule_set_init(struct sptlrpc_rule_set *set)
355 {
356         memset(set, 0, sizeof(*set));
357 }
358
359 void sptlrpc_rule_set_free(struct sptlrpc_rule_set *set);
360 int  sptlrpc_rule_set_expand(struct sptlrpc_rule_set *set);
361 int  sptlrpc_rule_set_merge(struct sptlrpc_rule_set *set,
362                             struct sptlrpc_rule *rule);
363 int sptlrpc_rule_set_choose(struct sptlrpc_rule_set *rset,
364                             enum lustre_sec_part from,
365                             enum lustre_sec_part to,
366                             lnet_nid_t nid,
367                             struct sptlrpc_flavor *sf);
368 void sptlrpc_rule_set_dump(struct sptlrpc_rule_set *set);
369
370 int  sptlrpc_process_config(struct lustre_cfg *lcfg);
371 void sptlrpc_conf_log_start(const char *logname);
372 void sptlrpc_conf_log_stop(const char *logname);
373 void sptlrpc_conf_log_update_begin(const char *logname);
374 void sptlrpc_conf_log_update_end(const char *logname);
375 void sptlrpc_conf_client_adapt(struct obd_device *obd);
376 int  sptlrpc_conf_target_get_rules(struct obd_device *obd,
377                                    struct sptlrpc_rule_set *rset,
378                                    int initial);
379 void sptlrpc_target_choose_flavor(struct sptlrpc_rule_set *rset,
380                                   enum lustre_sec_part from,
381                                   lnet_nid_t nid,
382                                   struct sptlrpc_flavor *flavor);
383
384 /* The maximum length of security payload. 1024 is enough for Kerberos 5,
385  * and should be enough for other future mechanisms but not sure.
386  * Only used by pre-allocated request/reply pool.
387  */
388 #define SPTLRPC_MAX_PAYLOAD     (1024)
389
390
391 struct vfs_cred {
392         uint32_t        vc_uid;
393         uint32_t        vc_gid;
394 };
395
396 struct ptlrpc_ctx_ops {
397         /**
398          * To determine whether it's suitable to use the \a ctx for \a vcred.
399          */
400         int     (*match)       (struct ptlrpc_cli_ctx *ctx,
401                                 struct vfs_cred *vcred);
402
403         /**
404          * To bring the \a ctx uptodate.
405          */
406         int     (*refresh)     (struct ptlrpc_cli_ctx *ctx);
407
408         /**
409          * Validate the \a ctx.
410          */
411         int     (*validate)    (struct ptlrpc_cli_ctx *ctx);
412
413         /**
414          * Force the \a ctx to die.
415          */
416         void    (*die)         (struct ptlrpc_cli_ctx *ctx,
417                                 int grace);
418         int     (*display)     (struct ptlrpc_cli_ctx *ctx,
419                                 char *buf, int bufsize);
420
421         /**
422          * Sign the request message using \a ctx.
423          *
424          * \pre req->rq_reqmsg point to request message.
425          * \pre req->rq_reqlen is the request message length.
426          * \post req->rq_reqbuf point to request message with signature.
427          * \post req->rq_reqdata_len is set to the final request message size.
428          *
429          * \see null_ctx_sign(), plain_ctx_sign(), gss_cli_ctx_sign().
430          */
431         int     (*sign)        (struct ptlrpc_cli_ctx *ctx,
432                                 struct ptlrpc_request *req);
433
434         /**
435          * Verify the reply message using \a ctx.
436          *
437          * \pre req->rq_repdata point to reply message with signature.
438          * \pre req->rq_repdata_len is the total reply message length.
439          * \post req->rq_repmsg point to reply message without signature.
440          * \post req->rq_replen is the reply message length.
441          *
442          * \see null_ctx_verify(), plain_ctx_verify(), gss_cli_ctx_verify().
443          */
444         int     (*verify)      (struct ptlrpc_cli_ctx *ctx,
445                                 struct ptlrpc_request *req);
446
447         /**
448          * Encrypt the request message using \a ctx.
449          *
450          * \pre req->rq_reqmsg point to request message in clear text.
451          * \pre req->rq_reqlen is the request message length.
452          * \post req->rq_reqbuf point to request message.
453          * \post req->rq_reqdata_len is set to the final request message size.
454          *
455          * \see gss_cli_ctx_seal().
456          */
457         int     (*seal)        (struct ptlrpc_cli_ctx *ctx,
458                                 struct ptlrpc_request *req);
459
460         /**
461          * Decrypt the reply message using \a ctx.
462          *
463          * \pre req->rq_repdata point to encrypted reply message.
464          * \pre req->rq_repdata_len is the total cipher text length.
465          * \post req->rq_repmsg point to reply message in clear text.
466          * \post req->rq_replen is the reply message length in clear text.
467          *
468          * \see gss_cli_ctx_unseal().
469          */
470         int     (*unseal)      (struct ptlrpc_cli_ctx *ctx,
471                                 struct ptlrpc_request *req);
472
473         /**
474          * Wrap bulk request data. This is called before wrapping RPC
475          * request message.
476          *
477          * \pre bulk buffer is descripted by desc->bd_iov and
478          * desc->bd_iov_count. note for read it's just buffer, no data
479          * need to be sent;  for write it contains data in clear text.
480          * \post when necessary, ptlrpc_bulk_sec_desc was properly prepared
481          * (usually inside of RPC request message).
482          * - encryption: cipher text bulk buffer is descripted by
483          *   desc->bd_enc_iov and desc->bd_iov_count (currently assume iov
484          *   count remains the same).
485          * - otherwise: bulk buffer is still desc->bd_iov and
486          *   desc->bd_iov_count.
487          *
488          * \return 0: success.
489          * \return -ev: error code.
490          *
491          * \see plain_cli_wrap_bulk(), gss_cli_ctx_wrap_bulk().
492          */
493         int     (*wrap_bulk)   (struct ptlrpc_cli_ctx *ctx,
494                                 struct ptlrpc_request *req,
495                                 struct ptlrpc_bulk_desc *desc);
496
497         /**
498          * Unwrap bulk reply data. This is called after wrapping RPC
499          * reply message.
500          *
501          * \pre bulk buffer is descripted by desc->bd_iov/desc->bd_enc_iov and
502          * desc->bd_iov_count, according to wrap_bulk().
503          * \post final bulk data in clear text is placed in buffer described
504          * by desc->bd_iov and desc->bd_iov_count.
505          * \return +ve nob of actual bulk data in clear text.
506          * \return -ve error code.
507          *
508          * \see plain_cli_unwrap_bulk(), gss_cli_ctx_unwrap_bulk().
509          */
510         int     (*unwrap_bulk) (struct ptlrpc_cli_ctx *ctx,
511                                 struct ptlrpc_request *req,
512                                 struct ptlrpc_bulk_desc *desc);
513 };
514
515 #define PTLRPC_CTX_NEW_BIT             (0)  /* newly created */
516 #define PTLRPC_CTX_UPTODATE_BIT        (1)  /* uptodate */
517 #define PTLRPC_CTX_DEAD_BIT            (2)  /* mark expired gracefully */
518 #define PTLRPC_CTX_ERROR_BIT           (3)  /* fatal error (refresh, etc.) */
519 #define PTLRPC_CTX_CACHED_BIT          (8)  /* in ctx cache (hash etc.) */
520 #define PTLRPC_CTX_ETERNAL_BIT         (9)  /* always valid */
521
522 #define PTLRPC_CTX_NEW                 (1 << PTLRPC_CTX_NEW_BIT)
523 #define PTLRPC_CTX_UPTODATE            (1 << PTLRPC_CTX_UPTODATE_BIT)
524 #define PTLRPC_CTX_DEAD                (1 << PTLRPC_CTX_DEAD_BIT)
525 #define PTLRPC_CTX_ERROR               (1 << PTLRPC_CTX_ERROR_BIT)
526 #define PTLRPC_CTX_CACHED              (1 << PTLRPC_CTX_CACHED_BIT)
527 #define PTLRPC_CTX_ETERNAL             (1 << PTLRPC_CTX_ETERNAL_BIT)
528
529 #define PTLRPC_CTX_STATUS_MASK         (PTLRPC_CTX_NEW_BIT    |       \
530                                         PTLRPC_CTX_UPTODATE   |       \
531                                         PTLRPC_CTX_DEAD       |       \
532                                         PTLRPC_CTX_ERROR)
533
534 struct ptlrpc_cli_ctx {
535         struct hlist_node       cc_cache;       /* linked into ctx cache */
536         atomic_t                cc_refcount;
537         struct ptlrpc_sec      *cc_sec;
538         struct ptlrpc_ctx_ops  *cc_ops;
539         cfs_time_t              cc_expire;      /* in seconds */
540         unsigned int            cc_early_expire:1;
541         unsigned long           cc_flags;
542         struct vfs_cred         cc_vcred;
543         spinlock_t              cc_lock;
544         struct list_head        cc_req_list;    /* waiting reqs linked here */
545         struct list_head        cc_gc_chain;    /* linked to gc chain */
546 };
547
548 /**
549  * client side policy operation vector.
550  */
551 struct ptlrpc_sec_cops {
552         /**
553          * Given an \a imp, create and initialize a ptlrpc_sec structure.
554          * \param ctx service context:
555          * - regular import: \a ctx should be NULL;
556          * - reverse import: \a ctx is obtained from incoming request.
557          * \param flavor specify what flavor to use.
558          *
559          * When necessary, policy module is responsible for taking reference
560          * on the import.
561          *
562          * \see null_create_sec(), plain_create_sec(), gss_sec_create_kr().
563          */
564         struct ptlrpc_sec *     (*create_sec)  (struct obd_import *imp,
565                                                 struct ptlrpc_svc_ctx *ctx,
566                                                 struct sptlrpc_flavor *flavor);
567
568         /**
569          * Destructor of ptlrpc_sec. When called, refcount has been dropped
570          * to 0 and all contexts has been destroyed.
571          *
572          * \see null_destroy_sec(), plain_destroy_sec(), gss_sec_destroy_kr().
573          */
574         void                    (*destroy_sec) (struct ptlrpc_sec *sec);
575
576         /**
577          * Notify that this ptlrpc_sec is going to die. Optionally, policy
578          * module is supposed to set sec->ps_dying and whatever necessary
579          * actions.
580          *
581          * \see plain_kill_sec(), gss_sec_kill().
582          */
583         void                    (*kill_sec)    (struct ptlrpc_sec *sec);
584
585         /**
586          * Given \a vcred, lookup and/or create its context. The policy module
587          * is supposed to maintain its own context cache.
588          * XXX currently \a create and \a remove_dead is always 1, perhaps
589          * should be removed completely.
590          *
591          * \see null_lookup_ctx(), plain_lookup_ctx(), gss_sec_lookup_ctx_kr().
592          */
593         struct ptlrpc_cli_ctx * (*lookup_ctx)  (struct ptlrpc_sec *sec,
594                                                 struct vfs_cred *vcred,
595                                                 int create,
596                                                 int remove_dead);
597
598         /**
599          * Called then the reference of \a ctx dropped to 0. The policy module
600          * is supposed to destroy this context or whatever else according to
601          * its cache maintainance mechamism.
602          *
603          * \param sync if zero, we shouldn't wait for the context being
604          * destroyed completely.
605          *
606          * \see plain_release_ctx(), gss_sec_release_ctx_kr().
607          */
608         void                    (*release_ctx) (struct ptlrpc_sec *sec,
609                                                 struct ptlrpc_cli_ctx *ctx,
610                                                 int sync);
611
612         /**
613          * Flush the context cache.
614          *
615          * \param uid context of which user, -1 means all contexts.
616          * \param grace if zero, the PTLRPC_CTX_UPTODATE_BIT of affected
617          * contexts should be cleared immediately.
618          * \param force if zero, only idle contexts will be flushed.
619          *
620          * \see plain_flush_ctx_cache(), gss_sec_flush_ctx_cache_kr().
621          */
622         int                     (*flush_ctx_cache)
623                                                (struct ptlrpc_sec *sec,
624                                                 uid_t uid,
625                                                 int grace,
626                                                 int force);
627
628         /**
629          * Called periodically by garbage collector to remove dead contexts
630          * from cache.
631          *
632          * \see gss_sec_gc_ctx_kr().
633          */
634         void                    (*gc_ctx)      (struct ptlrpc_sec *sec);
635
636         /**
637          * Given an context \a ctx, install a corresponding reverse service
638          * context on client side.
639          * XXX currently it's only used by GSS module, maybe we should remove
640          * this from general API.
641          */
642         int                     (*install_rctx)(struct obd_import *imp,
643                                                 struct ptlrpc_sec *sec,
644                                                 struct ptlrpc_cli_ctx *ctx);
645
646         /**
647          * To allocate request buffer for \a req.
648          *
649          * \pre req->rq_reqmsg == NULL.
650          * \pre req->rq_reqbuf == NULL, otherwise it must be pre-allocated,
651          * we are not supposed to free it.
652          * \post if success, req->rq_reqmsg point to a buffer with size
653          * at least \a lustre_msg_size.
654          *
655          * \see null_alloc_reqbuf(), plain_alloc_reqbuf(), gss_alloc_reqbuf().
656          */
657         int                     (*alloc_reqbuf)(struct ptlrpc_sec *sec,
658                                                 struct ptlrpc_request *req,
659                                                 int lustre_msg_size);
660
661         /**
662          * To free request buffer for \a req.
663          *
664          * \pre req->rq_reqbuf != NULL.
665          *
666          * \see null_free_reqbuf(), plain_free_reqbuf(), gss_free_reqbuf().
667          */
668         void                    (*free_reqbuf) (struct ptlrpc_sec *sec,
669                                                 struct ptlrpc_request *req);
670
671         /**
672          * To allocate reply buffer for \a req.
673          *
674          * \pre req->rq_repbuf == NULL.
675          * \post if success, req->rq_repbuf point to a buffer with size
676          * req->rq_repbuf_len, the size should be large enough to receive
677          * reply which be transformed from \a lustre_msg_size of clear text.
678          *
679          * \see null_alloc_repbuf(), plain_alloc_repbuf(), gss_alloc_repbuf().
680          */
681         int                     (*alloc_repbuf)(struct ptlrpc_sec *sec,
682                                                 struct ptlrpc_request *req,
683                                                 int lustre_msg_size);
684
685         /**
686          * To free reply buffer for \a req.
687          *
688          * \pre req->rq_repbuf != NULL.
689          * \post req->rq_repbuf == NULL.
690          * \post req->rq_repbuf_len == 0.
691          *
692          * \see null_free_repbuf(), plain_free_repbuf(), gss_free_repbuf().
693          */
694         void                    (*free_repbuf) (struct ptlrpc_sec *sec,
695                                                 struct ptlrpc_request *req);
696
697         /**
698          * To expand the request buffer of \a req, thus the \a segment in
699          * the request message pointed by req->rq_reqmsg can accommodate
700          * at least \a newsize of data.
701          *
702          * \pre req->rq_reqmsg->lm_buflens[segment] < newsize.
703          *
704          * \see null_enlarge_reqbuf(), plain_enlarge_reqbuf(),
705          * gss_enlarge_reqbuf().
706          */
707         int                     (*enlarge_reqbuf)
708                                                (struct ptlrpc_sec *sec,
709                                                 struct ptlrpc_request *req,
710                                                 int segment, int newsize);
711         /*
712          * misc
713          */
714         int                     (*display)     (struct ptlrpc_sec *sec,
715                                                 struct seq_file *seq);
716 };
717
718 /**
719  * server side policy operation vector.
720  */
721 struct ptlrpc_sec_sops {
722         /**
723          * verify an incoming request.
724          *
725          * \pre request message is pointed by req->rq_reqbuf, size is
726          * req->rq_reqdata_len; and the message has been unpacked to
727          * host byte order.
728          *
729          * \retval SECSVC_OK success, req->rq_reqmsg point to request message
730          * in clear text, size is req->rq_reqlen; req->rq_svc_ctx is set;
731          * req->rq_sp_from is decoded from request.
732          * \retval SECSVC_COMPLETE success, the request has been fully
733          * processed, and reply message has been prepared; req->rq_sp_from is
734          * decoded from request.
735          * \retval SECSVC_DROP failed, this request should be dropped.
736          *
737          * \see null_accept(), plain_accept(), gss_svc_accept_kr().
738          */
739         int                     (*accept)      (struct ptlrpc_request *req);
740
741         /**
742          * Perform security transformation upon reply message.
743          *
744          * \pre reply message is pointed by req->rq_reply_state->rs_msg, size
745          * is req->rq_replen.
746          * \post req->rs_repdata_len is the final message size.
747          * \post req->rq_reply_off is set.
748          *
749          * \see null_authorize(), plain_authorize(), gss_svc_authorize().
750          */
751         int                     (*authorize)   (struct ptlrpc_request *req);
752
753         /**
754          * Invalidate server context \a ctx.
755          *
756          * \see gss_svc_invalidate_ctx().
757          */
758         void                    (*invalidate_ctx)
759                                                (struct ptlrpc_svc_ctx *ctx);
760
761         /**
762          * Allocate a ptlrpc_reply_state.
763          *
764          * \param msgsize size of the reply message in clear text.
765          * \pre if req->rq_reply_state != NULL, then it's pre-allocated, we
766          * should simply use it; otherwise we'll responsible for allocating
767          * a new one.
768          * \post req->rq_reply_state != NULL;
769          * \post req->rq_reply_state->rs_msg != NULL;
770          *
771          * \see null_alloc_rs(), plain_alloc_rs(), gss_svc_alloc_rs().
772          */
773         int                     (*alloc_rs)    (struct ptlrpc_request *req,
774                                                 int msgsize);
775
776         /**
777          * Free a ptlrpc_reply_state.
778          */
779         void                    (*free_rs)     (struct ptlrpc_reply_state *rs);
780
781         /**
782          * Release the server context \a ctx.
783          *
784          * \see gss_svc_free_ctx().
785          */
786         void                    (*free_ctx)    (struct ptlrpc_svc_ctx *ctx);
787
788         /**
789          * Install a reverse context based on the server context \a ctx.
790          *
791          * \see gss_svc_install_rctx_kr().
792          */
793         int                     (*install_rctx)(struct obd_import *imp,
794                                                 struct ptlrpc_svc_ctx *ctx);
795
796         /**
797          * Prepare buffer for incoming bulk write.
798          *
799          * \pre desc->bd_iov and desc->bd_iov_count describes the buffer
800          * intended to receive the write.
801          *
802          * \see gss_svc_prep_bulk().
803          */
804         int                     (*prep_bulk)   (struct ptlrpc_request *req,
805                                                 struct ptlrpc_bulk_desc *desc);
806
807         /**
808          * Unwrap the bulk write data.
809          *
810          * \see plain_svc_unwrap_bulk(), gss_svc_unwrap_bulk().
811          */
812         int                     (*unwrap_bulk) (struct ptlrpc_request *req,
813                                                 struct ptlrpc_bulk_desc *desc);
814
815         /**
816          * Wrap the bulk read data.
817          *
818          * \see plain_svc_wrap_bulk(), gss_svc_wrap_bulk().
819          */
820         int                     (*wrap_bulk)   (struct ptlrpc_request *req,
821                                                 struct ptlrpc_bulk_desc *desc);
822 };
823
824 struct ptlrpc_sec_policy {
825         struct module                  *sp_owner;
826         char                           *sp_name;
827         __u16                           sp_policy; /* policy number */
828         struct ptlrpc_sec_cops         *sp_cops;   /* client ops */
829         struct ptlrpc_sec_sops         *sp_sops;   /* server ops */
830 };
831
832 #define PTLRPC_SEC_FL_REVERSE           0x0001 /* reverse sec */
833 #define PTLRPC_SEC_FL_ROOTONLY          0x0002 /* treat everyone as root */
834 #define PTLRPC_SEC_FL_UDESC             0x0004 /* ship udesc */
835 #define PTLRPC_SEC_FL_BULK              0x0008 /* intensive bulk i/o expected */
836 #define PTLRPC_SEC_FL_PAG               0x0010 /* PAG mode */
837
838 /**
839  * The ptlrpc_sec represents the client side ptlrpc security facilities,
840  * each obd_import (both regular and reverse import) must associate with
841  * a ptlrpc_sec.
842  *
843  * \see sptlrpc_import_sec_adapt().
844  */
845 struct ptlrpc_sec {
846         struct ptlrpc_sec_policy       *ps_policy;
847         atomic_t                        ps_refcount;
848         /** statistic only */
849         atomic_t                        ps_nctx;
850         /** unique identifier */
851         int                             ps_id;
852         struct sptlrpc_flavor           ps_flvr;
853         enum lustre_sec_part            ps_part;
854         /** after set, no more new context will be created */
855         unsigned int                    ps_dying:1;
856         /** owning import */
857         struct obd_import              *ps_import;
858         spinlock_t                      ps_lock;
859
860         /*
861          * garbage collection
862          */
863         struct list_head                ps_gc_list;
864         cfs_time_t                      ps_gc_interval; /* in seconds */
865         cfs_time_t                      ps_gc_next;     /* in seconds */
866 };
867
868 static inline int flvr_is_rootonly(__u32 flavor)
869 {
870         return (SPTLRPC_FLVR_POLICY(flavor) == SPTLRPC_POLICY_GSS &&
871                 (SPTLRPC_FLVR_MECH(flavor) == SPTLRPC_MECH_GSS_NULL ||
872                  SPTLRPC_FLVR_MECH(flavor) == SPTLRPC_MECH_GSS_SK));
873 }
874
875 static inline int flvr_allows_user_desc(__u32 flavor)
876 {
877         return (SPTLRPC_FLVR_POLICY(flavor) == SPTLRPC_POLICY_GSS &&
878                 (SPTLRPC_FLVR_MECH(flavor) == SPTLRPC_MECH_GSS_NULL ||
879                  SPTLRPC_FLVR_MECH(flavor) == SPTLRPC_MECH_GSS_SK));
880 }
881
882 static inline int sec_is_reverse(struct ptlrpc_sec *sec)
883 {
884         return (sec->ps_flvr.sf_flags & PTLRPC_SEC_FL_REVERSE);
885 }
886
887 static inline int sec_is_rootonly(struct ptlrpc_sec *sec)
888 {
889         return (sec->ps_flvr.sf_flags & PTLRPC_SEC_FL_ROOTONLY);
890 }
891
892
893 struct ptlrpc_svc_ctx {
894         atomic_t                        sc_refcount;
895         struct ptlrpc_sec_policy       *sc_policy;
896 };
897
898 /*
899  * user identity descriptor
900  */
901 #define LUSTRE_MAX_GROUPS               (128)
902
903 struct ptlrpc_user_desc {
904         __u32           pud_uid;
905         __u32           pud_gid;
906         __u32           pud_fsuid;
907         __u32           pud_fsgid;
908         __u32           pud_cap;
909         __u32           pud_ngroups;
910         __u32           pud_groups[0];
911 };
912
913 /*
914  * bulk flavors
915  */
916 enum sptlrpc_bulk_hash_alg {
917         BULK_HASH_ALG_NULL      = 0,
918         BULK_HASH_ALG_ADLER32,
919         BULK_HASH_ALG_CRC32,
920         BULK_HASH_ALG_MD5,
921         BULK_HASH_ALG_SHA1,
922         BULK_HASH_ALG_SHA256,
923         BULK_HASH_ALG_SHA384,
924         BULK_HASH_ALG_SHA512,
925         BULK_HASH_ALG_MAX
926 };
927
928 const char * sptlrpc_get_hash_name(__u8 hash_alg);
929 __u8 sptlrpc_get_hash_alg(const char *algname);
930
931 enum {
932         BSD_FL_ERR      = 1,
933 };
934
935 struct ptlrpc_bulk_sec_desc {
936         __u8            bsd_version;    /* 0 */
937         __u8            bsd_type;       /* SPTLRPC_BULK_XXX */
938         __u8            bsd_svc;        /* SPTLRPC_BULK_SVC_XXXX */
939         __u8            bsd_flags;      /* flags */
940         __u32           bsd_nob;        /* nob of bulk data */
941         __u8            bsd_data[0];    /* policy-specific token */
942 };
943
944
945 /*
946  * lprocfs
947  */
948 struct proc_dir_entry;
949 extern struct proc_dir_entry *sptlrpc_proc_root;
950
951 /*
952  * round size up to next power of 2, for slab allocation.
953  * @size must be sane (can't overflow after round up)
954  */
955 static inline int size_roundup_power2(int size)
956 {
957         size--;
958         size |= size >> 1;
959         size |= size >> 2;
960         size |= size >> 4;
961         size |= size >> 8;
962         size |= size >> 16;
963         size++;
964         return size;
965 }
966
967 /*
968  * internal support libraries
969  */
970 void _sptlrpc_enlarge_msg_inplace(struct lustre_msg *msg,
971                                   int segment, int newsize);
972
973 /*
974  * security policies
975  */
976 int sptlrpc_register_policy(struct ptlrpc_sec_policy *policy);
977 int sptlrpc_unregister_policy(struct ptlrpc_sec_policy *policy);
978
979 __u32 sptlrpc_name2flavor_base(const char *name);
980 const char *sptlrpc_flavor2name_base(__u32 flvr);
981 char *sptlrpc_flavor2name_bulk(struct sptlrpc_flavor *sf,
982                                char *buf, int bufsize);
983 char *sptlrpc_flavor2name(struct sptlrpc_flavor *sf, char *buf, int bufsize);
984 char *sptlrpc_secflags2str(__u32 flags, char *buf, int bufsize);
985
986 static inline struct ptlrpc_sec_policy *
987 sptlrpc_policy_get(struct ptlrpc_sec_policy *policy)
988 {
989         __module_get(policy->sp_owner);
990         return policy;
991 }
992
993 static inline void
994 sptlrpc_policy_put(struct ptlrpc_sec_policy *policy)
995 {
996         module_put(policy->sp_owner);
997 }
998
999 /*
1000  * client credential
1001  */
1002 static inline
1003 unsigned long cli_ctx_status(struct ptlrpc_cli_ctx *ctx)
1004 {
1005         return (ctx->cc_flags & PTLRPC_CTX_STATUS_MASK);
1006 }
1007
1008 static inline
1009 int cli_ctx_is_ready(struct ptlrpc_cli_ctx *ctx)
1010 {
1011         return (cli_ctx_status(ctx) == PTLRPC_CTX_UPTODATE);
1012 }
1013
1014 static inline
1015 int cli_ctx_is_refreshed(struct ptlrpc_cli_ctx *ctx)
1016 {
1017         return (cli_ctx_status(ctx) != 0);
1018 }
1019
1020 static inline
1021 int cli_ctx_is_uptodate(struct ptlrpc_cli_ctx *ctx)
1022 {
1023         return ((ctx->cc_flags & PTLRPC_CTX_UPTODATE) != 0);
1024 }
1025
1026 static inline
1027 int cli_ctx_is_error(struct ptlrpc_cli_ctx *ctx)
1028 {
1029         return ((ctx->cc_flags & PTLRPC_CTX_ERROR) != 0);
1030 }
1031
1032 static inline
1033 int cli_ctx_is_dead(struct ptlrpc_cli_ctx *ctx)
1034 {
1035         return ((ctx->cc_flags & (PTLRPC_CTX_DEAD | PTLRPC_CTX_ERROR)) != 0);
1036 }
1037
1038 static inline
1039 int cli_ctx_is_eternal(struct ptlrpc_cli_ctx *ctx)
1040 {
1041         return ((ctx->cc_flags & PTLRPC_CTX_ETERNAL) != 0);
1042 }
1043
1044 /*
1045  * sec get/put
1046  */
1047 struct ptlrpc_sec *sptlrpc_sec_get(struct ptlrpc_sec *sec);
1048 void sptlrpc_sec_put(struct ptlrpc_sec *sec);
1049
1050 /*
1051  * internal apis which only used by policy impelentation
1052  */
1053 int  sptlrpc_get_next_secid(void);
1054 void sptlrpc_sec_destroy(struct ptlrpc_sec *sec);
1055
1056 /*
1057  * exported client context api
1058  */
1059 struct ptlrpc_cli_ctx *sptlrpc_cli_ctx_get(struct ptlrpc_cli_ctx *ctx);
1060 void sptlrpc_cli_ctx_put(struct ptlrpc_cli_ctx *ctx, int sync);
1061 void sptlrpc_cli_ctx_expire(struct ptlrpc_cli_ctx *ctx);
1062 void sptlrpc_cli_ctx_wakeup(struct ptlrpc_cli_ctx *ctx);
1063 int sptlrpc_cli_ctx_display(struct ptlrpc_cli_ctx *ctx, char *buf, int bufsize);
1064
1065 /*
1066  * exported client context wrap/buffers
1067  */
1068 int sptlrpc_cli_wrap_request(struct ptlrpc_request *req);
1069 int sptlrpc_cli_unwrap_reply(struct ptlrpc_request *req);
1070 int sptlrpc_cli_alloc_reqbuf(struct ptlrpc_request *req, int msgsize);
1071 void sptlrpc_cli_free_reqbuf(struct ptlrpc_request *req);
1072 int sptlrpc_cli_alloc_repbuf(struct ptlrpc_request *req, int msgsize);
1073 void sptlrpc_cli_free_repbuf(struct ptlrpc_request *req);
1074 int sptlrpc_cli_enlarge_reqbuf(struct ptlrpc_request *req,
1075                                int segment, int newsize);
1076 int  sptlrpc_cli_unwrap_early_reply(struct ptlrpc_request *req,
1077                                     struct ptlrpc_request **req_ret);
1078 void sptlrpc_cli_finish_early_reply(struct ptlrpc_request *early_req);
1079
1080 void sptlrpc_request_out_callback(struct ptlrpc_request *req);
1081
1082 /*
1083  * exported higher interface of import & request
1084  */
1085 int sptlrpc_import_sec_adapt(struct obd_import *imp,
1086                              struct ptlrpc_svc_ctx *ctx,
1087                              struct sptlrpc_flavor *flvr);
1088 struct ptlrpc_sec *sptlrpc_import_sec_ref(struct obd_import *imp);
1089 void sptlrpc_import_sec_put(struct obd_import *imp);
1090
1091 int  sptlrpc_import_check_ctx(struct obd_import *imp);
1092 void sptlrpc_import_flush_root_ctx(struct obd_import *imp);
1093 void sptlrpc_import_flush_my_ctx(struct obd_import *imp);
1094 void sptlrpc_import_flush_all_ctx(struct obd_import *imp);
1095 int  sptlrpc_req_get_ctx(struct ptlrpc_request *req);
1096 void sptlrpc_req_put_ctx(struct ptlrpc_request *req, int sync);
1097 int  sptlrpc_req_refresh_ctx(struct ptlrpc_request *req, long timeout);
1098 int  sptlrpc_req_replace_dead_ctx(struct ptlrpc_request *req);
1099 void sptlrpc_req_set_flavor(struct ptlrpc_request *req, int opcode);
1100
1101 int sptlrpc_parse_rule(char *param, struct sptlrpc_rule *rule);
1102
1103 /* gc */
1104 void sptlrpc_gc_add_sec(struct ptlrpc_sec *sec);
1105 void sptlrpc_gc_del_sec(struct ptlrpc_sec *sec);
1106 void sptlrpc_gc_add_ctx(struct ptlrpc_cli_ctx *ctx);
1107
1108 /* misc */
1109 const char * sec2target_str(struct ptlrpc_sec *sec);
1110 int sptlrpc_lprocfs_cliobd_attach(struct obd_device *dev);
1111
1112 /*
1113  * server side
1114  */
1115 enum secsvc_accept_res {
1116         SECSVC_OK       = 0,
1117         SECSVC_COMPLETE,
1118         SECSVC_DROP,
1119 };
1120
1121 int  sptlrpc_svc_unwrap_request(struct ptlrpc_request *req);
1122 int  sptlrpc_svc_alloc_rs(struct ptlrpc_request *req, int msglen);
1123 int  sptlrpc_svc_wrap_reply(struct ptlrpc_request *req);
1124 void sptlrpc_svc_free_rs(struct ptlrpc_reply_state *rs);
1125 void sptlrpc_svc_ctx_addref(struct ptlrpc_request *req);
1126 void sptlrpc_svc_ctx_decref(struct ptlrpc_request *req);
1127 void sptlrpc_svc_ctx_invalidate(struct ptlrpc_request *req);
1128
1129 int  sptlrpc_target_export_check(struct obd_export *exp,
1130                                  struct ptlrpc_request *req);
1131 void sptlrpc_target_update_exp_flavor(struct obd_device *obd,
1132                                       struct sptlrpc_rule_set *rset);
1133
1134 /*
1135  * reverse context
1136  */
1137 int sptlrpc_svc_install_rvs_ctx(struct obd_import *imp,
1138                                 struct ptlrpc_svc_ctx *ctx);
1139 int sptlrpc_cli_install_rvs_ctx(struct obd_import *imp,
1140                                 struct ptlrpc_cli_ctx *ctx);
1141
1142 /* bulk security api */
1143 int sptlrpc_enc_pool_add_user(void);
1144 int sptlrpc_enc_pool_del_user(void);
1145 int  sptlrpc_enc_pool_get_pages(struct ptlrpc_bulk_desc *desc);
1146 void sptlrpc_enc_pool_put_pages(struct ptlrpc_bulk_desc *desc);
1147 int get_free_pages_in_pool(void);
1148 int pool_is_at_full_capacity(void);
1149
1150 int sptlrpc_cli_wrap_bulk(struct ptlrpc_request *req,
1151                           struct ptlrpc_bulk_desc *desc);
1152 int sptlrpc_cli_unwrap_bulk_read(struct ptlrpc_request *req,
1153                                  struct ptlrpc_bulk_desc *desc,
1154                                  int nob);
1155 int sptlrpc_cli_unwrap_bulk_write(struct ptlrpc_request *req,
1156                                   struct ptlrpc_bulk_desc *desc);
1157 #ifdef HAVE_SERVER_SUPPORT
1158 int sptlrpc_svc_prep_bulk(struct ptlrpc_request *req,
1159                           struct ptlrpc_bulk_desc *desc);
1160 int sptlrpc_svc_wrap_bulk(struct ptlrpc_request *req,
1161                           struct ptlrpc_bulk_desc *desc);
1162 int sptlrpc_svc_unwrap_bulk(struct ptlrpc_request *req,
1163                             struct ptlrpc_bulk_desc *desc);
1164 #endif
1165
1166 /* bulk helpers (internal use only by policies) */
1167 int sptlrpc_get_bulk_checksum(struct ptlrpc_bulk_desc *desc, __u8 alg,
1168                               void *buf, int buflen);
1169
1170 int bulk_sec_desc_unpack(struct lustre_msg *msg, int offset, int swabbed);
1171
1172 /* user descriptor helpers */
1173 static inline int sptlrpc_user_desc_size(int ngroups)
1174 {
1175         return sizeof(struct ptlrpc_user_desc) + ngroups * sizeof(__u32);
1176 }
1177
1178 int sptlrpc_current_user_desc_size(void);
1179 int sptlrpc_pack_user_desc(struct lustre_msg *msg, int offset);
1180 int sptlrpc_unpack_user_desc(struct lustre_msg *req, int offset, int swabbed);
1181
1182
1183 #define CFS_CAP_CHOWN_MASK (1 << CFS_CAP_CHOWN)
1184 #define CFS_CAP_SYS_RESOURCE_MASK (1 << CFS_CAP_SYS_RESOURCE)
1185
1186 enum {
1187         LUSTRE_SEC_NONE         = 0,
1188         LUSTRE_SEC_REMOTE       = 1,
1189         LUSTRE_SEC_SPECIFY      = 2,
1190         LUSTRE_SEC_ALL          = 3
1191 };
1192
1193 /** @} sptlrpc */
1194
1195 #endif /* _LUSTRE_SEC_H_ */