LCOV - differential code coverage report
Current view: top level - src/test/modules/ldap_password_func - ldap_password_func.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 88.2 % 17 15 2 15
Current Date: 2024-04-14 14:21:10 Functions: 75.0 % 4 3 1 3
Baseline: 16@8cea358b128 Branches: 88.9 % 18 16 2 16
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 88.2 % 17 15 2 15
Function coverage date bins:
(240..) days: 75.0 % 4 3 1 3
Branch coverage date bins:
(240..) days: 88.9 % 18 16 2 16

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * Copyright (c) 2022-2024, PostgreSQL Global Development Group
                                  4                 :                :  *
                                  5                 :                :  * ldap_password_func.c
                                  6                 :                :  *
                                  7                 :                :  * Loadable PostgreSQL module to mutate the ldapbindpasswd. This
                                  8                 :                :  * implementation just hands back the configured password rot13'd.
                                  9                 :                :  *
                                 10                 :                :  *-------------------------------------------------------------------------
                                 11                 :                :  */
                                 12                 :                : 
                                 13                 :                : #include "postgres.h"
                                 14                 :                : 
                                 15                 :                : #include <float.h>
                                 16                 :                : #include <stdio.h>
                                 17                 :                : 
                                 18                 :                : #include "libpq/auth.h"
                                 19                 :                : #include "libpq/libpq.h"
                                 20                 :                : #include "libpq/libpq-be.h"
                                 21                 :                : #include "utils/guc.h"
                                 22                 :                : 
  396 andrew@dunslane.net        23                 :CBC          26 : PG_MODULE_MAGIC;
                                 24                 :                : 
                                 25                 :                : void        _PG_init(void);
                                 26                 :                : void        _PG_fini(void);
                                 27                 :                : 
                                 28                 :                : /* hook function */
                                 29                 :                : static char *rot13_passphrase(char *password);
                                 30                 :                : 
                                 31                 :                : /*
                                 32                 :                :  * Module load callback
                                 33                 :                :  */
                                 34                 :                : void
                                 35                 :             26 : _PG_init(void)
                                 36                 :                : {
                                 37                 :             26 :     ldap_password_hook = rot13_passphrase;
                                 38                 :             26 : }
                                 39                 :                : 
                                 40                 :                : void
  396 andrew@dunslane.net        41                 :UBC           0 : _PG_fini(void)
                                 42                 :                : {
                                 43                 :                :     /* do  nothing yet */
                                 44                 :              0 : }
                                 45                 :                : 
                                 46                 :                : static char *
  396 andrew@dunslane.net        47                 :CBC           2 : rot13_passphrase(char *pw)
                                 48                 :                : {
                                 49                 :              2 :     size_t      size = strlen(pw) + 1;
                                 50                 :                : 
                                 51                 :              2 :     char       *new_pw = (char *) palloc(size);
                                 52                 :                : 
                                 53                 :              2 :     strlcpy(new_pw, pw, size);
                                 54         [ +  + ]:             14 :     for (char *p = new_pw; *p; p++)
                                 55                 :                :     {
                                 56                 :             12 :         char        c = *p;
                                 57                 :                : 
                                 58   [ +  +  +  +  :             12 :         if ((c >= 'a' && c <= 'm') || (c >= 'A' && c <= 'M'))
                                        +  +  +  + ]
                                 59                 :              4 :             *p = c + 13;
                                 60   [ +  +  -  +  :              8 :         else if ((c >= 'n' && c <= 'z') || (c >= 'N' && c <= 'Z'))
                                        +  +  +  - ]
                                 61                 :              7 :             *p = c - 13;
                                 62                 :                :     }
                                 63                 :                : 
                                 64                 :              2 :     return new_pw;
                                 65                 :                : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622