Whamcloud - gitweb
0e2bd160095bf2a130d2826114b20a9920cd2aed
[fs/lustre-release.git] / lustre / ptlrpc / sec_plain.c
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) 2007, 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  * lustre/ptlrpc/sec_plain.c
37  *
38  * Author: Eric Mei <ericm@clusterfs.com>
39  */
40
41 #ifndef EXPORT_SYMTAB
42 # define EXPORT_SYMTAB
43 #endif
44 #define DEBUG_SUBSYSTEM S_SEC
45
46 #ifndef __KERNEL__
47 #include <liblustre.h>
48 #endif
49
50 #include <obd_support.h>
51 #include <obd_cksum.h>
52 #include <obd_class.h>
53 #include <lustre_net.h>
54 #include <lustre_sec.h>
55
56 struct plain_sec {
57         struct ptlrpc_sec       pls_base;
58         cfs_rwlock_t            pls_lock;
59         struct ptlrpc_cli_ctx  *pls_ctx;
60 };
61
62 static inline struct plain_sec *sec2plsec(struct ptlrpc_sec *sec)
63 {
64         return container_of(sec, struct plain_sec, pls_base);
65 }
66
67 static struct ptlrpc_sec_policy plain_policy;
68 static struct ptlrpc_ctx_ops    plain_ctx_ops;
69 static struct ptlrpc_svc_ctx    plain_svc_ctx;
70
71 static unsigned int plain_at_offset;
72
73 /*
74  * for simplicity, plain policy rpc use fixed layout.
75  */
76 #define PLAIN_PACK_SEGMENTS             (4)
77
78 #define PLAIN_PACK_HDR_OFF              (0)
79 #define PLAIN_PACK_MSG_OFF              (1)
80 #define PLAIN_PACK_USER_OFF             (2)
81 #define PLAIN_PACK_BULK_OFF             (3)
82
83 #define PLAIN_FL_USER                   (0x01)
84 #define PLAIN_FL_BULK                   (0x02)
85
86 struct plain_header {
87         __u8            ph_ver;            /* 0 */
88         __u8            ph_flags;
89         __u8            ph_sp;             /* source */
90         __u8            ph_bulk_hash_alg;  /* complete flavor desc */
91         __u8            ph_pad[4];
92 };
93
94 struct plain_bulk_token {
95         __u8            pbt_hash[8];
96 };
97
98 #define PLAIN_BSD_SIZE \
99         (sizeof(struct ptlrpc_bulk_sec_desc) + sizeof(struct plain_bulk_token))
100
101 /****************************************
102  * bulk checksum helpers                *
103  ****************************************/
104
105 static int plain_unpack_bsd(struct lustre_msg *msg, int swabbed)
106 {
107         struct ptlrpc_bulk_sec_desc *bsd;
108
109         if (bulk_sec_desc_unpack(msg, PLAIN_PACK_BULK_OFF, swabbed))
110                 return -EPROTO;
111
112         bsd = lustre_msg_buf(msg, PLAIN_PACK_BULK_OFF, PLAIN_BSD_SIZE);
113         if (bsd == NULL) {
114                 CERROR("bulk sec desc has short size %d\n",
115                        lustre_msg_buflen(msg, PLAIN_PACK_BULK_OFF));
116                 return -EPROTO;
117         }
118
119         if (bsd->bsd_svc != SPTLRPC_BULK_SVC_NULL &&
120             bsd->bsd_svc != SPTLRPC_BULK_SVC_INTG) {
121                 CERROR("invalid bulk svc %u\n", bsd->bsd_svc);
122                 return -EPROTO;
123         }
124
125         return 0;
126 }
127
128 static int plain_generate_bulk_csum(struct ptlrpc_bulk_desc *desc,
129                                     __u8 hash_alg,
130                                     struct plain_bulk_token *token)
131 {
132         if (hash_alg == BULK_HASH_ALG_NULL)
133                 return 0;
134
135         memset(token->pbt_hash, 0, sizeof(token->pbt_hash));
136         return sptlrpc_get_bulk_checksum(desc, hash_alg, token->pbt_hash,
137                                          sizeof(token->pbt_hash));
138 }
139
140 static int plain_verify_bulk_csum(struct ptlrpc_bulk_desc *desc,
141                                   __u8 hash_alg,
142                                   struct plain_bulk_token *tokenr)
143 {
144         struct plain_bulk_token tokenv;
145         int                     rc;
146
147         if (hash_alg == BULK_HASH_ALG_NULL)
148                 return 0;
149
150         memset(&tokenv.pbt_hash, 0, sizeof(tokenv.pbt_hash));
151         rc = sptlrpc_get_bulk_checksum(desc, hash_alg, tokenv.pbt_hash,
152                                        sizeof(tokenv.pbt_hash));
153         if (rc)
154                 return rc;
155
156         if (memcmp(tokenr->pbt_hash, tokenv.pbt_hash, sizeof(tokenr->pbt_hash)))
157                 return -EACCES;
158         return 0;
159 }
160
161 #ifdef __KERNEL__
162 static void corrupt_bulk_data(struct ptlrpc_bulk_desc *desc)
163 {
164         char           *ptr;
165         unsigned int    off, i;
166
167         for (i = 0; i < desc->bd_iov_count; i++) {
168                 if (desc->bd_iov[i].kiov_len == 0)
169                         continue;
170
171                 ptr = cfs_kmap(desc->bd_iov[i].kiov_page);
172                 off = desc->bd_iov[i].kiov_offset & ~CFS_PAGE_MASK;
173                 ptr[off] ^= 0x1;
174                 cfs_kunmap(desc->bd_iov[i].kiov_page);
175                 return;
176         }
177 }
178 #else
179 static void corrupt_bulk_data(struct ptlrpc_bulk_desc *desc)
180 {
181         unsigned int    i;
182
183         for (i = 0; i < desc->bd_iov_count; i++) {
184                 if (desc->bd_iov[i].iov_len == 0)
185                         continue;
186
187                 ((char *)desc->bd_iov[i].iov_base)[i] ^= 0x1;
188                 return;
189         }
190 }
191 #endif /* __KERNEL__ */
192
193 /****************************************
194  * cli_ctx apis                         *
195  ****************************************/
196
197 static
198 int plain_ctx_refresh(struct ptlrpc_cli_ctx *ctx)
199 {
200         /* should never reach here */
201         LBUG();
202         return 0;
203 }
204
205 static
206 int plain_ctx_validate(struct ptlrpc_cli_ctx *ctx)
207 {
208         return 0;
209 }
210
211 static
212 int plain_ctx_sign(struct ptlrpc_cli_ctx *ctx, struct ptlrpc_request *req)
213 {
214         struct lustre_msg   *msg = req->rq_reqbuf;
215         struct plain_header *phdr;
216         ENTRY;
217
218         msg->lm_secflvr = req->rq_flvr.sf_rpc;
219
220         phdr = lustre_msg_buf(msg, PLAIN_PACK_HDR_OFF, 0);
221         phdr->ph_ver = 0;
222         phdr->ph_flags = 0;
223         phdr->ph_sp = ctx->cc_sec->ps_part;
224         phdr->ph_bulk_hash_alg = req->rq_flvr.u_bulk.hash.hash_alg;
225
226         if (req->rq_pack_udesc)
227                 phdr->ph_flags |= PLAIN_FL_USER;
228         if (req->rq_pack_bulk)
229                 phdr->ph_flags |= PLAIN_FL_BULK;
230
231         req->rq_reqdata_len = lustre_msg_size_v2(msg->lm_bufcount,
232                                                  msg->lm_buflens);
233         RETURN(0);
234 }
235
236 static
237 int plain_ctx_verify(struct ptlrpc_cli_ctx *ctx, struct ptlrpc_request *req)
238 {
239         struct lustre_msg   *msg = req->rq_repdata;
240         struct plain_header *phdr;
241         __u32                cksum;
242         int                  swabbed;
243         ENTRY;
244
245         if (msg->lm_bufcount != PLAIN_PACK_SEGMENTS) {
246                 CERROR("unexpected reply buf count %u\n", msg->lm_bufcount);
247                 RETURN(-EPROTO);
248         }
249
250         swabbed = ptlrpc_rep_need_swab(req);
251
252         phdr = lustre_msg_buf(msg, PLAIN_PACK_HDR_OFF, sizeof(*phdr));
253         if (phdr == NULL) {
254                 CERROR("missing plain header\n");
255                 RETURN(-EPROTO);
256         }
257
258         if (phdr->ph_ver != 0) {
259                 CERROR("Invalid header version\n");
260                 RETURN(-EPROTO);
261         }
262
263         /* expect no user desc in reply */
264         if (phdr->ph_flags & PLAIN_FL_USER) {
265                 CERROR("Unexpected udesc flag in reply\n");
266                 RETURN(-EPROTO);
267         }
268
269         if (phdr->ph_bulk_hash_alg != req->rq_flvr.u_bulk.hash.hash_alg) {
270                 CERROR("reply bulk flavor %u != %u\n", phdr->ph_bulk_hash_alg,
271                        req->rq_flvr.u_bulk.hash.hash_alg);
272                 RETURN(-EPROTO);
273         }
274
275         if (unlikely(req->rq_early)) {
276                 cksum = crc32_le(!(__u32) 0,
277                                  lustre_msg_buf(msg, PLAIN_PACK_MSG_OFF, 0),
278                                  lustre_msg_buflen(msg, PLAIN_PACK_MSG_OFF));
279                 if (cksum != msg->lm_cksum) {
280                         CWARN("early reply checksum mismatch: %08x != %08x\n",
281                               cpu_to_le32(cksum), msg->lm_cksum);
282                         RETURN(-EINVAL);
283                 }
284         } else {
285                 /* whether we sent with bulk or not, we expect the same
286                  * in reply, except for early reply */
287                 if (!req->rq_early &&
288                     !equi(req->rq_pack_bulk == 1,
289                           phdr->ph_flags & PLAIN_FL_BULK)) {
290                         CERROR("%s bulk checksum in reply\n",
291                                req->rq_pack_bulk ? "Missing" : "Unexpected");
292                         RETURN(-EPROTO);
293                 }
294
295                 if (phdr->ph_flags & PLAIN_FL_BULK) {
296                         if (plain_unpack_bsd(msg, swabbed))
297                                 RETURN(-EPROTO);
298                 }
299         }
300
301         req->rq_repmsg = lustre_msg_buf(msg, PLAIN_PACK_MSG_OFF, 0);
302         req->rq_replen = lustre_msg_buflen(msg, PLAIN_PACK_MSG_OFF);
303         RETURN(0);
304 }
305
306 static
307 int plain_cli_wrap_bulk(struct ptlrpc_cli_ctx *ctx,
308                         struct ptlrpc_request *req,
309                         struct ptlrpc_bulk_desc *desc)
310 {
311         struct ptlrpc_bulk_sec_desc *bsd;
312         struct plain_bulk_token     *token;
313         int                          rc;
314
315         LASSERT(req->rq_pack_bulk);
316         LASSERT(req->rq_reqbuf->lm_bufcount == PLAIN_PACK_SEGMENTS);
317
318         bsd = lustre_msg_buf(req->rq_reqbuf, PLAIN_PACK_BULK_OFF, 0);
319         token = (struct plain_bulk_token *) bsd->bsd_data;
320
321         bsd->bsd_version = 0;
322         bsd->bsd_flags = 0;
323         bsd->bsd_type = SPTLRPC_BULK_DEFAULT;
324         bsd->bsd_svc = SPTLRPC_FLVR_BULK_SVC(req->rq_flvr.sf_rpc);
325
326         if (bsd->bsd_svc == SPTLRPC_BULK_SVC_NULL)
327                 RETURN(0);
328
329         if (req->rq_bulk_read)
330                 RETURN(0);
331
332         rc = plain_generate_bulk_csum(desc, req->rq_flvr.u_bulk.hash.hash_alg,
333                                       token);
334         if (rc) {
335                 CERROR("bulk write: failed to compute checksum: %d\n", rc);
336         } else {
337                 /*
338                  * for sending we only compute the wrong checksum instead
339                  * of corrupting the data so it is still correct on a redo
340                  */
341                 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CHECKSUM_SEND) &&
342                     req->rq_flvr.u_bulk.hash.hash_alg != BULK_HASH_ALG_NULL)
343                         token->pbt_hash[0] ^= 0x1;
344         }
345
346         return rc;
347 }
348
349 static
350 int plain_cli_unwrap_bulk(struct ptlrpc_cli_ctx *ctx,
351                           struct ptlrpc_request *req,
352                           struct ptlrpc_bulk_desc *desc)
353 {
354         struct ptlrpc_bulk_sec_desc *bsdr, *bsdv;
355         struct plain_bulk_token     *tokenr, *tokenv;
356         int                          rc;
357 #ifdef __KERNEL__
358         int                          i, nob;
359 #endif
360
361         LASSERT(req->rq_pack_bulk);
362         LASSERT(req->rq_reqbuf->lm_bufcount == PLAIN_PACK_SEGMENTS);
363         LASSERT(req->rq_repdata->lm_bufcount == PLAIN_PACK_SEGMENTS);
364
365         bsdr = lustre_msg_buf(req->rq_reqbuf, PLAIN_PACK_BULK_OFF, 0);
366         tokenr = (struct plain_bulk_token *) bsdr->bsd_data;
367         bsdv = lustre_msg_buf(req->rq_repdata, PLAIN_PACK_BULK_OFF, 0);
368         tokenv = (struct plain_bulk_token *) bsdv->bsd_data;
369
370         if (req->rq_bulk_write) {
371                 if (bsdv->bsd_flags & BSD_FL_ERR)
372                         return -EIO;
373                 return 0;
374         }
375
376 #ifdef __KERNEL__
377         /* fix the actual data size */
378         for (i = 0, nob = 0; i < desc->bd_iov_count; i++) {
379                 if (desc->bd_iov[i].kiov_len + nob > desc->bd_nob_transferred) {
380                         desc->bd_iov[i].kiov_len =
381                                 desc->bd_nob_transferred - nob;
382                 }
383                 nob += desc->bd_iov[i].kiov_len;
384         }
385 #endif
386
387         rc = plain_verify_bulk_csum(desc, req->rq_flvr.u_bulk.hash.hash_alg,
388                                     tokenv);
389         if (rc)
390                 CERROR("bulk read: client verify failed: %d\n", rc);
391
392         return rc;
393 }
394
395 /****************************************
396  * sec apis                             *
397  ****************************************/
398
399 static
400 struct ptlrpc_cli_ctx *plain_sec_install_ctx(struct plain_sec *plsec)
401 {
402         struct ptlrpc_cli_ctx  *ctx, *ctx_new;
403
404         OBD_ALLOC_PTR(ctx_new);
405
406         cfs_write_lock(&plsec->pls_lock);
407
408         ctx = plsec->pls_ctx;
409         if (ctx) {
410                 cfs_atomic_inc(&ctx->cc_refcount);
411
412                 if (ctx_new)
413                         OBD_FREE_PTR(ctx_new);
414         } else if (ctx_new) {
415                 ctx = ctx_new;
416
417                 cfs_atomic_set(&ctx->cc_refcount, 1); /* for cache */
418                 ctx->cc_sec = &plsec->pls_base;
419                 ctx->cc_ops = &plain_ctx_ops;
420                 ctx->cc_expire = 0;
421                 ctx->cc_flags = PTLRPC_CTX_CACHED | PTLRPC_CTX_UPTODATE;
422                 ctx->cc_vcred.vc_uid = 0;
423                 cfs_spin_lock_init(&ctx->cc_lock);
424                 CFS_INIT_LIST_HEAD(&ctx->cc_req_list);
425                 CFS_INIT_LIST_HEAD(&ctx->cc_gc_chain);
426
427                 plsec->pls_ctx = ctx;
428                 cfs_atomic_inc(&plsec->pls_base.ps_nctx);
429                 cfs_atomic_inc(&plsec->pls_base.ps_refcount);
430
431                 cfs_atomic_inc(&ctx->cc_refcount); /* for caller */
432         }
433
434         cfs_write_unlock(&plsec->pls_lock);
435
436         return ctx;
437 }
438
439 static
440 void plain_destroy_sec(struct ptlrpc_sec *sec)
441 {
442         struct plain_sec       *plsec = sec2plsec(sec);
443         ENTRY;
444
445         LASSERT(sec->ps_policy == &plain_policy);
446         LASSERT(sec->ps_import);
447         LASSERT(cfs_atomic_read(&sec->ps_refcount) == 0);
448         LASSERT(cfs_atomic_read(&sec->ps_nctx) == 0);
449         LASSERT(plsec->pls_ctx == NULL);
450
451         class_import_put(sec->ps_import);
452
453         OBD_FREE_PTR(plsec);
454         EXIT;
455 }
456
457 static
458 void plain_kill_sec(struct ptlrpc_sec *sec)
459 {
460         sec->ps_dying = 1;
461 }
462
463 static
464 struct ptlrpc_sec *plain_create_sec(struct obd_import *imp,
465                                     struct ptlrpc_svc_ctx *svc_ctx,
466                                     struct sptlrpc_flavor *sf)
467 {
468         struct plain_sec       *plsec;
469         struct ptlrpc_sec      *sec;
470         struct ptlrpc_cli_ctx  *ctx;
471         ENTRY;
472
473         LASSERT(SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_PLAIN);
474
475         OBD_ALLOC_PTR(plsec);
476         if (plsec == NULL)
477                 RETURN(NULL);
478
479         /*
480          * initialize plain_sec
481          */
482         cfs_rwlock_init(&plsec->pls_lock);
483         plsec->pls_ctx = NULL;
484
485         sec = &plsec->pls_base;
486         sec->ps_policy = &plain_policy;
487         cfs_atomic_set(&sec->ps_refcount, 0);
488         cfs_atomic_set(&sec->ps_nctx, 0);
489         sec->ps_id = sptlrpc_get_next_secid();
490         sec->ps_import = class_import_get(imp);
491         sec->ps_flvr = *sf;
492         cfs_spin_lock_init(&sec->ps_lock);
493         CFS_INIT_LIST_HEAD(&sec->ps_gc_list);
494         sec->ps_gc_interval = 0;
495         sec->ps_gc_next = 0;
496
497         /* install ctx immediately if this is a reverse sec */
498         if (svc_ctx) {
499                 ctx = plain_sec_install_ctx(plsec);
500                 if (ctx == NULL) {
501                         plain_destroy_sec(sec);
502                         RETURN(NULL);
503                 }
504                 sptlrpc_cli_ctx_put(ctx, 1);
505         }
506
507         RETURN(sec);
508 }
509
510 static
511 struct ptlrpc_cli_ctx *plain_lookup_ctx(struct ptlrpc_sec *sec,
512                                         struct vfs_cred *vcred,
513                                         int create, int remove_dead)
514 {
515         struct plain_sec       *plsec = sec2plsec(sec);
516         struct ptlrpc_cli_ctx  *ctx;
517         ENTRY;
518
519         cfs_read_lock(&plsec->pls_lock);
520         ctx = plsec->pls_ctx;
521         if (ctx)
522                 cfs_atomic_inc(&ctx->cc_refcount);
523         cfs_read_unlock(&plsec->pls_lock);
524
525         if (unlikely(ctx == NULL))
526                 ctx = plain_sec_install_ctx(plsec);
527
528         RETURN(ctx);
529 }
530
531 static
532 void plain_release_ctx(struct ptlrpc_sec *sec,
533                        struct ptlrpc_cli_ctx *ctx, int sync)
534 {
535         LASSERT(cfs_atomic_read(&sec->ps_refcount) > 0);
536         LASSERT(cfs_atomic_read(&sec->ps_nctx) > 0);
537         LASSERT(cfs_atomic_read(&ctx->cc_refcount) == 0);
538         LASSERT(ctx->cc_sec == sec);
539
540         OBD_FREE_PTR(ctx);
541
542         cfs_atomic_dec(&sec->ps_nctx);
543         sptlrpc_sec_put(sec);
544 }
545
546 static
547 int plain_flush_ctx_cache(struct ptlrpc_sec *sec,
548                           uid_t uid, int grace, int force)
549 {
550         struct plain_sec       *plsec = sec2plsec(sec);
551         struct ptlrpc_cli_ctx  *ctx;
552         ENTRY;
553
554         /* do nothing unless caller want to flush for 'all' */
555         if (uid != -1)
556                 RETURN(0);
557
558         cfs_write_lock(&plsec->pls_lock);
559         ctx = plsec->pls_ctx;
560         plsec->pls_ctx = NULL;
561         cfs_write_unlock(&plsec->pls_lock);
562
563         if (ctx)
564                 sptlrpc_cli_ctx_put(ctx, 1);
565         RETURN(0);
566 }
567
568 static
569 int plain_alloc_reqbuf(struct ptlrpc_sec *sec,
570                        struct ptlrpc_request *req,
571                        int msgsize)
572 {
573         __u32 buflens[PLAIN_PACK_SEGMENTS] = { 0, };
574         int   alloc_len;
575         ENTRY;
576
577         buflens[PLAIN_PACK_HDR_OFF] = sizeof(struct plain_header);
578         buflens[PLAIN_PACK_MSG_OFF] = msgsize;
579
580         if (req->rq_pack_udesc)
581                 buflens[PLAIN_PACK_USER_OFF] = sptlrpc_current_user_desc_size();
582
583         if (req->rq_pack_bulk) {
584                 LASSERT(req->rq_bulk_read || req->rq_bulk_write);
585                 buflens[PLAIN_PACK_BULK_OFF] = PLAIN_BSD_SIZE;
586         }
587
588         alloc_len = lustre_msg_size_v2(PLAIN_PACK_SEGMENTS, buflens);
589
590         if (!req->rq_reqbuf) {
591                 LASSERT(!req->rq_pool);
592
593                 alloc_len = size_roundup_power2(alloc_len);
594                 OBD_ALLOC(req->rq_reqbuf, alloc_len);
595                 if (!req->rq_reqbuf)
596                         RETURN(-ENOMEM);
597
598                 req->rq_reqbuf_len = alloc_len;
599         } else {
600                 LASSERT(req->rq_pool);
601                 LASSERT(req->rq_reqbuf_len >= alloc_len);
602                 memset(req->rq_reqbuf, 0, alloc_len);
603         }
604
605         lustre_init_msg_v2(req->rq_reqbuf, PLAIN_PACK_SEGMENTS, buflens, NULL);
606         req->rq_reqmsg = lustre_msg_buf(req->rq_reqbuf, PLAIN_PACK_MSG_OFF, 0);
607
608         if (req->rq_pack_udesc)
609                 sptlrpc_pack_user_desc(req->rq_reqbuf, PLAIN_PACK_USER_OFF);
610
611         RETURN(0);
612 }
613
614 static
615 void plain_free_reqbuf(struct ptlrpc_sec *sec,
616                        struct ptlrpc_request *req)
617 {
618         ENTRY;
619         if (!req->rq_pool) {
620                 OBD_FREE(req->rq_reqbuf, req->rq_reqbuf_len);
621                 req->rq_reqbuf = NULL;
622                 req->rq_reqbuf_len = 0;
623         }
624         EXIT;
625 }
626
627 static
628 int plain_alloc_repbuf(struct ptlrpc_sec *sec,
629                        struct ptlrpc_request *req,
630                        int msgsize)
631 {
632         __u32 buflens[PLAIN_PACK_SEGMENTS] = { 0, };
633         int alloc_len;
634         ENTRY;
635
636         buflens[PLAIN_PACK_HDR_OFF] = sizeof(struct plain_header);
637         buflens[PLAIN_PACK_MSG_OFF] = msgsize;
638
639         if (req->rq_pack_bulk) {
640                 LASSERT(req->rq_bulk_read || req->rq_bulk_write);
641                 buflens[PLAIN_PACK_BULK_OFF] = PLAIN_BSD_SIZE;
642         }
643
644         alloc_len = lustre_msg_size_v2(PLAIN_PACK_SEGMENTS, buflens);
645
646         /* add space for early reply */
647         alloc_len += plain_at_offset;
648
649         alloc_len = size_roundup_power2(alloc_len);
650
651         OBD_ALLOC(req->rq_repbuf, alloc_len);
652         if (!req->rq_repbuf)
653                 RETURN(-ENOMEM);
654
655         req->rq_repbuf_len = alloc_len;
656         RETURN(0);
657 }
658
659 static
660 void plain_free_repbuf(struct ptlrpc_sec *sec,
661                        struct ptlrpc_request *req)
662 {
663         ENTRY;
664         OBD_FREE(req->rq_repbuf, req->rq_repbuf_len);
665         req->rq_repbuf = NULL;
666         req->rq_repbuf_len = 0;
667         EXIT;
668 }
669
670 static
671 int plain_enlarge_reqbuf(struct ptlrpc_sec *sec,
672                          struct ptlrpc_request *req,
673                          int segment, int newsize)
674 {
675         struct lustre_msg      *newbuf;
676         int                     oldsize;
677         int                     newmsg_size, newbuf_size;
678         ENTRY;
679
680         LASSERT(req->rq_reqbuf);
681         LASSERT(req->rq_reqbuf_len >= req->rq_reqlen);
682         LASSERT(lustre_msg_buf(req->rq_reqbuf, PLAIN_PACK_MSG_OFF, 0) ==
683                 req->rq_reqmsg);
684
685         /* compute new embedded msg size.  */
686         oldsize = req->rq_reqmsg->lm_buflens[segment];
687         req->rq_reqmsg->lm_buflens[segment] = newsize;
688         newmsg_size = lustre_msg_size_v2(req->rq_reqmsg->lm_bufcount,
689                                          req->rq_reqmsg->lm_buflens);
690         req->rq_reqmsg->lm_buflens[segment] = oldsize;
691
692         /* compute new wrapper msg size.  */
693         oldsize = req->rq_reqbuf->lm_buflens[PLAIN_PACK_MSG_OFF];
694         req->rq_reqbuf->lm_buflens[PLAIN_PACK_MSG_OFF] = newmsg_size;
695         newbuf_size = lustre_msg_size_v2(req->rq_reqbuf->lm_bufcount,
696                                          req->rq_reqbuf->lm_buflens);
697         req->rq_reqbuf->lm_buflens[PLAIN_PACK_MSG_OFF] = oldsize;
698
699         /* request from pool should always have enough buffer */
700         LASSERT(!req->rq_pool || req->rq_reqbuf_len >= newbuf_size);
701
702         if (req->rq_reqbuf_len < newbuf_size) {
703                 newbuf_size = size_roundup_power2(newbuf_size);
704
705                 OBD_ALLOC(newbuf, newbuf_size);
706                 if (newbuf == NULL)
707                         RETURN(-ENOMEM);
708
709                 memcpy(newbuf, req->rq_reqbuf, req->rq_reqbuf_len);
710
711                 OBD_FREE(req->rq_reqbuf, req->rq_reqbuf_len);
712                 req->rq_reqbuf = newbuf;
713                 req->rq_reqbuf_len = newbuf_size;
714                 req->rq_reqmsg = lustre_msg_buf(req->rq_reqbuf,
715                                                 PLAIN_PACK_MSG_OFF, 0);
716         }
717
718         _sptlrpc_enlarge_msg_inplace(req->rq_reqbuf, PLAIN_PACK_MSG_OFF,
719                                      newmsg_size);
720         _sptlrpc_enlarge_msg_inplace(req->rq_reqmsg, segment, newsize);
721
722         req->rq_reqlen = newmsg_size;
723         RETURN(0);
724 }
725
726 /****************************************
727  * service apis                         *
728  ****************************************/
729
730 static struct ptlrpc_svc_ctx plain_svc_ctx = {
731         .sc_refcount    = CFS_ATOMIC_INIT(1),
732         .sc_policy      = &plain_policy,
733 };
734
735 static
736 int plain_accept(struct ptlrpc_request *req)
737 {
738         struct lustre_msg   *msg = req->rq_reqbuf;
739         struct plain_header *phdr;
740         int                  swabbed;
741         ENTRY;
742
743         LASSERT(SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) ==
744                 SPTLRPC_POLICY_PLAIN);
745
746         if (SPTLRPC_FLVR_BASE(req->rq_flvr.sf_rpc) !=
747             SPTLRPC_FLVR_BASE(SPTLRPC_FLVR_PLAIN) ||
748             SPTLRPC_FLVR_BULK_TYPE(req->rq_flvr.sf_rpc) !=
749             SPTLRPC_FLVR_BULK_TYPE(SPTLRPC_FLVR_PLAIN)) {
750                 CERROR("Invalid rpc flavor %x\n", req->rq_flvr.sf_rpc);
751                 RETURN(SECSVC_DROP);
752         }
753
754         if (msg->lm_bufcount < PLAIN_PACK_SEGMENTS) {
755                 CERROR("unexpected request buf count %u\n", msg->lm_bufcount);
756                 RETURN(SECSVC_DROP);
757         }
758
759         swabbed = ptlrpc_req_need_swab(req);
760
761         phdr = lustre_msg_buf(msg, PLAIN_PACK_HDR_OFF, sizeof(*phdr));
762         if (phdr == NULL) {
763                 CERROR("missing plain header\n");
764                 RETURN(-EPROTO);
765         }
766
767         if (phdr->ph_ver != 0) {
768                 CERROR("Invalid header version\n");
769                 RETURN(-EPROTO);
770         }
771
772         if (phdr->ph_bulk_hash_alg >= BULK_HASH_ALG_MAX) {
773                 CERROR("invalid hash algorithm: %u\n", phdr->ph_bulk_hash_alg);
774                 RETURN(-EPROTO);
775         }
776
777         req->rq_sp_from = phdr->ph_sp;
778         req->rq_flvr.u_bulk.hash.hash_alg = phdr->ph_bulk_hash_alg;
779
780         if (phdr->ph_flags & PLAIN_FL_USER) {
781                 if (sptlrpc_unpack_user_desc(msg, PLAIN_PACK_USER_OFF,
782                                              swabbed)) {
783                         CERROR("Mal-formed user descriptor\n");
784                         RETURN(SECSVC_DROP);
785                 }
786
787                 req->rq_pack_udesc = 1;
788                 req->rq_user_desc = lustre_msg_buf(msg, PLAIN_PACK_USER_OFF, 0);
789         }
790
791         if (phdr->ph_flags & PLAIN_FL_BULK) {
792                 if (plain_unpack_bsd(msg, swabbed))
793                         RETURN(SECSVC_DROP);
794
795                 req->rq_pack_bulk = 1;
796         }
797
798         req->rq_reqmsg = lustre_msg_buf(msg, PLAIN_PACK_MSG_OFF, 0);
799         req->rq_reqlen = msg->lm_buflens[PLAIN_PACK_MSG_OFF];
800
801         req->rq_svc_ctx = &plain_svc_ctx;
802         cfs_atomic_inc(&req->rq_svc_ctx->sc_refcount);
803
804         RETURN(SECSVC_OK);
805 }
806
807 static
808 int plain_alloc_rs(struct ptlrpc_request *req, int msgsize)
809 {
810         struct ptlrpc_reply_state   *rs;
811         __u32                        buflens[PLAIN_PACK_SEGMENTS] = { 0, };
812         int                          rs_size = sizeof(*rs);
813         ENTRY;
814
815         LASSERT(msgsize % 8 == 0);
816
817         buflens[PLAIN_PACK_HDR_OFF] = sizeof(struct plain_header);
818         buflens[PLAIN_PACK_MSG_OFF] = msgsize;
819
820         if (req->rq_pack_bulk && (req->rq_bulk_read || req->rq_bulk_write))
821                 buflens[PLAIN_PACK_BULK_OFF] = PLAIN_BSD_SIZE;
822
823         rs_size += lustre_msg_size_v2(PLAIN_PACK_SEGMENTS, buflens);
824
825         rs = req->rq_reply_state;
826
827         if (rs) {
828                 /* pre-allocated */
829                 LASSERT(rs->rs_size >= rs_size);
830         } else {
831                 OBD_ALLOC(rs, rs_size);
832                 if (rs == NULL)
833                         RETURN(-ENOMEM);
834
835                 rs->rs_size = rs_size;
836         }
837
838         rs->rs_svc_ctx = req->rq_svc_ctx;
839         cfs_atomic_inc(&req->rq_svc_ctx->sc_refcount);
840         rs->rs_repbuf = (struct lustre_msg *) (rs + 1);
841         rs->rs_repbuf_len = rs_size - sizeof(*rs);
842
843         lustre_init_msg_v2(rs->rs_repbuf, PLAIN_PACK_SEGMENTS, buflens, NULL);
844         rs->rs_msg = lustre_msg_buf_v2(rs->rs_repbuf, PLAIN_PACK_MSG_OFF, 0);
845
846         req->rq_reply_state = rs;
847         RETURN(0);
848 }
849
850 static
851 void plain_free_rs(struct ptlrpc_reply_state *rs)
852 {
853         ENTRY;
854
855         LASSERT(cfs_atomic_read(&rs->rs_svc_ctx->sc_refcount) > 1);
856         cfs_atomic_dec(&rs->rs_svc_ctx->sc_refcount);
857
858         if (!rs->rs_prealloc)
859                 OBD_FREE(rs, rs->rs_size);
860         EXIT;
861 }
862
863 static
864 int plain_authorize(struct ptlrpc_request *req)
865 {
866         struct ptlrpc_reply_state *rs = req->rq_reply_state;
867         struct lustre_msg_v2      *msg = rs->rs_repbuf;
868         struct plain_header       *phdr;
869         int                        len;
870         ENTRY;
871
872         LASSERT(rs);
873         LASSERT(msg);
874
875         if (req->rq_replen != msg->lm_buflens[PLAIN_PACK_MSG_OFF])
876                 len = lustre_shrink_msg(msg, PLAIN_PACK_MSG_OFF,
877                                         req->rq_replen, 1);
878         else
879                 len = lustre_msg_size_v2(msg->lm_bufcount, msg->lm_buflens);
880
881         msg->lm_secflvr = req->rq_flvr.sf_rpc;
882
883         phdr = lustre_msg_buf(msg, PLAIN_PACK_HDR_OFF, 0);
884         phdr->ph_ver = 0;
885         phdr->ph_flags = 0;
886         phdr->ph_bulk_hash_alg = req->rq_flvr.u_bulk.hash.hash_alg;
887
888         if (req->rq_pack_bulk)
889                 phdr->ph_flags |= PLAIN_FL_BULK;
890
891         rs->rs_repdata_len = len;
892
893         if (likely(req->rq_packed_final)) {
894                 if (lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT)
895                         req->rq_reply_off = plain_at_offset;
896                 else
897                         req->rq_reply_off = 0;
898         } else {
899                 msg->lm_cksum = crc32_le(!(__u32) 0,
900                                 lustre_msg_buf(msg, PLAIN_PACK_MSG_OFF, 0),
901                                 lustre_msg_buflen(msg, PLAIN_PACK_MSG_OFF));
902                 req->rq_reply_off = 0;
903         }
904
905         RETURN(0);
906 }
907
908 static
909 int plain_svc_unwrap_bulk(struct ptlrpc_request *req,
910                           struct ptlrpc_bulk_desc *desc)
911 {
912         struct ptlrpc_reply_state   *rs = req->rq_reply_state;
913         struct ptlrpc_bulk_sec_desc *bsdr, *bsdv;
914         struct plain_bulk_token     *tokenr, *tokenv;
915         int                          rc;
916
917         LASSERT(req->rq_bulk_write);
918         LASSERT(req->rq_pack_bulk);
919
920         bsdr = lustre_msg_buf(req->rq_reqbuf, PLAIN_PACK_BULK_OFF, 0);
921         tokenr = (struct plain_bulk_token *) bsdr->bsd_data;
922         bsdv = lustre_msg_buf(rs->rs_repbuf, PLAIN_PACK_BULK_OFF, 0);
923         tokenv = (struct plain_bulk_token *) bsdv->bsd_data;
924
925         bsdv->bsd_version = 0;
926         bsdv->bsd_type = SPTLRPC_BULK_DEFAULT;
927         bsdv->bsd_svc = bsdr->bsd_svc;
928         bsdv->bsd_flags = 0;
929
930         if (bsdr->bsd_svc == SPTLRPC_BULK_SVC_NULL)
931                 return 0;
932
933         rc = plain_verify_bulk_csum(desc, req->rq_flvr.u_bulk.hash.hash_alg,
934                                     tokenr);
935         if (rc) {
936                 bsdv->bsd_flags |= BSD_FL_ERR;
937                 CERROR("bulk write: server verify failed: %d\n", rc);
938         }
939
940         return rc;
941 }
942
943 static
944 int plain_svc_wrap_bulk(struct ptlrpc_request *req,
945                         struct ptlrpc_bulk_desc *desc)
946 {
947         struct ptlrpc_reply_state   *rs = req->rq_reply_state;
948         struct ptlrpc_bulk_sec_desc *bsdr, *bsdv;
949         struct plain_bulk_token     *tokenr, *tokenv;
950         int                          rc;
951
952         LASSERT(req->rq_bulk_read);
953         LASSERT(req->rq_pack_bulk);
954
955         bsdr = lustre_msg_buf(req->rq_reqbuf, PLAIN_PACK_BULK_OFF, 0);
956         tokenr = (struct plain_bulk_token *) bsdr->bsd_data;
957         bsdv = lustre_msg_buf(rs->rs_repbuf, PLAIN_PACK_BULK_OFF, 0);
958         tokenv = (struct plain_bulk_token *) bsdv->bsd_data;
959
960         bsdv->bsd_version = 0;
961         bsdv->bsd_type = SPTLRPC_BULK_DEFAULT;
962         bsdv->bsd_svc = bsdr->bsd_svc;
963         bsdv->bsd_flags = 0;
964
965         if (bsdr->bsd_svc == SPTLRPC_BULK_SVC_NULL)
966                 return 0;
967
968         rc = plain_generate_bulk_csum(desc, req->rq_flvr.u_bulk.hash.hash_alg,
969                                       tokenv);
970         if (rc) {
971                 CERROR("bulk read: server failed to compute "
972                        "checksum: %d\n", rc);
973         } else {
974                 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CHECKSUM_RECEIVE))
975                         corrupt_bulk_data(desc);
976         }
977
978         return rc;
979 }
980
981 static struct ptlrpc_ctx_ops plain_ctx_ops = {
982         .refresh                = plain_ctx_refresh,
983         .validate               = plain_ctx_validate,
984         .sign                   = plain_ctx_sign,
985         .verify                 = plain_ctx_verify,
986         .wrap_bulk              = plain_cli_wrap_bulk,
987         .unwrap_bulk            = plain_cli_unwrap_bulk,
988 };
989
990 static struct ptlrpc_sec_cops plain_sec_cops = {
991         .create_sec             = plain_create_sec,
992         .destroy_sec            = plain_destroy_sec,
993         .kill_sec               = plain_kill_sec,
994         .lookup_ctx             = plain_lookup_ctx,
995         .release_ctx            = plain_release_ctx,
996         .flush_ctx_cache        = plain_flush_ctx_cache,
997         .alloc_reqbuf           = plain_alloc_reqbuf,
998         .free_reqbuf            = plain_free_reqbuf,
999         .alloc_repbuf           = plain_alloc_repbuf,
1000         .free_repbuf            = plain_free_repbuf,
1001         .enlarge_reqbuf         = plain_enlarge_reqbuf,
1002 };
1003
1004 static struct ptlrpc_sec_sops plain_sec_sops = {
1005         .accept                 = plain_accept,
1006         .alloc_rs               = plain_alloc_rs,
1007         .authorize              = plain_authorize,
1008         .free_rs                = plain_free_rs,
1009         .unwrap_bulk            = plain_svc_unwrap_bulk,
1010         .wrap_bulk              = plain_svc_wrap_bulk,
1011 };
1012
1013 static struct ptlrpc_sec_policy plain_policy = {
1014         .sp_owner               = THIS_MODULE,
1015         .sp_name                = "plain",
1016         .sp_policy              = SPTLRPC_POLICY_PLAIN,
1017         .sp_cops                = &plain_sec_cops,
1018         .sp_sops                = &plain_sec_sops,
1019 };
1020
1021 int sptlrpc_plain_init(void)
1022 {
1023         __u32 buflens[PLAIN_PACK_SEGMENTS] = { 0, };
1024         int rc;
1025
1026         buflens[PLAIN_PACK_MSG_OFF] = lustre_msg_early_size();
1027         plain_at_offset = lustre_msg_size_v2(PLAIN_PACK_SEGMENTS, buflens);
1028
1029         rc = sptlrpc_register_policy(&plain_policy);
1030         if (rc)
1031                 CERROR("failed to register: %d\n", rc);
1032
1033         return rc;
1034 }
1035
1036 void sptlrpc_plain_fini(void)
1037 {
1038         int rc;
1039
1040         rc = sptlrpc_unregister_policy(&plain_policy);
1041         if (rc)
1042                 CERROR("cannot unregister: %d\n", rc);
1043 }