home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 6.ddi / SECURE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-15  |  5.1 KB  |  181 lines

  1. //         SECURE Lan Manager security checking for SQL Server 
  2. // This program is an adaptation of the standard pass-through gateway.
  3. // It implements a security integration layer between Lan Manager
  4. // and SQL Server.  On as connection event (in SECURECBS.C) Lan Manager
  5. // is queried for the name of the user on the other end of the pipe.
  6. // This username is compared to the requested SQL Server login name,
  7. // and the login is rejected if the two don't match.
  8. //
  9. // If the /F flag is given at startup, all language events will be written
  10. // to the log file prior to being passed on to SQL Server.
  11. // The /N flag turns off userid checking. The /M flag allows multiple gateways
  12. // on the same named-pipe.
  13. //
  14. // This application requires the LAN Manager 2.0 Programmer's Toolkit
  15. // for compilation and linking.
  16. //
  17.  
  18.  
  19. #include   <stdlib.h>
  20. #include   <stdio.h>
  21. #include   <string.h>
  22. #define INCL_BASE
  23. #include   <os2.h>
  24. #include   <sqlfront.h>
  25. #include   <sqldb.h>
  26. #include   <srv.h>
  27.  
  28. // Globals
  29. //
  30. DBCHAR FAR *SrvrName = "";   // The default remote server name
  31. DBCHAR FAR *PipeName = TDS34_CONNECT_NAME;   // Default pipe name
  32. DBCHAR FAR *LogFile = "secure.log";  // Default log file name
  33. DBCHAR FAR *SrvrCoexist = "FALSE"; // Mulitiple Gateway Instance Flag
  34. BOOL fLogEnabled = FALSE;   // request logging off by default
  35. BOOL fConnectCheck = TRUE;  // LM connection verification on by default
  36.  
  37. // function prototypes
  38. //
  39. void getargs(int argc, char **argv);
  40.  
  41. void main(int argc, char **argv);
  42.  
  43. int SRVAPI init_server(SRV_SERVER FAR *server);
  44.  
  45. void SRVAPI set_remote_server_name(char FAR *name);
  46.  
  47. // New function for setting options
  48. //
  49. void SRVAPI set_security_options(BOOL logflag, BOOL checkflag);
  50.  
  51. int chk_err(SRV_SERVER FAR *server, SRV_PROC FAR *srvproc, int srverror,
  52.             BYTE severity, BYTE state, int oserrnum, DBCHAR FAR *errtext,
  53.             int errtextlen, DBCHAR FAR *oserrtext, int oserrtextlen);
  54.  
  55. DBCHAR FAR *getservername(int argc, char *argv[]);
  56.  
  57. DBCHAR FAR *getPipeName(int argc, char *argv[]);
  58.  
  59. void main(argc, argv)
  60. int argc;
  61. char *argv[];
  62. {
  63.    SRV_CONFIG FAR *config; // The  configuration structure
  64.    SRV_SERVER FAR *server; // The  service process
  65.  
  66.    //  Read any command line arguments.
  67.    //
  68.    getargs(argc, argv);
  69.  
  70.    //  Send the name retrieved to the gateway's DLL module
  71.    //
  72.    set_remote_server_name(SrvrName);
  73.  
  74.    //  Set the logging and security checking flags
  75.    //
  76.    set_security_options(fLogEnabled, fConnectCheck);
  77.  
  78.    //  Allocate a configuration structure that is used to initialize
  79.    //  the  application
  80.    //
  81.    config = srv_config_alloc();
  82.  
  83.    //  Allow 20 connections at a time.
  84.    //
  85.    srv_config(config, (DBINT)SRV_CONNECTIONS, "20", SRV_NULLTERM);
  86.  
  87.    //  Set the log file.
  88.    //
  89.    srv_config(config, (DBINT)SRV_LOGFILE, LogFile, SRV_NULLTERM);
  90.  
  91.     // Allow gateway to start, even if pipe is already in use
  92.     //
  93.     srv_config(config, (DBINT)SRV_COEXIST, SrvrCoexist, SRV_NULLTERM);
  94.  
  95.    //  Install the  error handler.
  96.    //
  97.    srv_errhandle(chk_err);
  98.  
  99.    //  Initialize the gateway  and save the server handle
  100.    //  so it can be used in later functions.
  101.    //
  102.    server = srv_init(config, PipeName, SRV_NULLTERM);
  103.    if (server == NULL) {
  104.        printf("Unable to initialize Gateway.  Check log file.\n");
  105.        DosExit(EXIT_PROCESS, 1);
  106.    }
  107.  
  108.    // When starting the gateway, initialize the remote server structure.
  109.    // This is done in the init_server() function.
  110.    // All the other event handlers are also defined in the init_server()
  111.    // function.
  112.    //
  113.    srv_handle(server, (DBINT)SRV_START, init_server);
  114.  
  115.    //  Now everything's ready to go with our gateway, so we
  116.    //  start it and keep it going until we get a stop request.
  117.    //
  118.    srv_log(server, FALSE, " ", SRV_NULLTERM);  // insert blank line
  119.    srv_log(server, TRUE, "SECURE Starting", SRV_NULLTERM);
  120.  
  121.    printf("\nSecure Starting\n");
  122.  
  123.    srv_run(server);
  124.    
  125. }
  126.  
  127. // GETARGS 
  128. //    Read the command line arguments.
  129. //
  130. // Parameters:
  131. //       argc - int (from "main" entry)
  132. //       argv - pointer to array of char pointers (from "main" entry)
  133. //
  134. // Returns:
  135. //     VOID
  136. //
  137. void getargs(int argc, char *argv[])
  138. {
  139.    int i;
  140.    char *ptr;
  141.  
  142.    for (i = 1; i < argc; ++i) {
  143.        if (argv[i][0] != '-' && argv[i][0] != '/') {
  144.            printf(
  145.            "Usage: secure [-S<server name> -p<pipe name> -F<log file> -N -M]\n");
  146.            exit(1);
  147.        }
  148.        ptr = argv[i];
  149.        switch (ptr[1]) {
  150.        case 'S':
  151.            SrvrName = ptr + 2;
  152.            break;
  153.  
  154.        case 'p':
  155.            PipeName = ptr + 2;
  156.            break;
  157.  
  158.        case 'F':
  159.            fLogEnabled = TRUE;
  160.            if (strlen(ptr + 2) > 0) {
  161.                LogFile = ptr + 2;
  162.            }
  163.            break;
  164.  
  165.          case 'M':
  166.            ptr++;
  167.             SrvrCoexist = "TRUE";
  168.             break;
  169.  
  170.       case 'N':
  171.            fConnectCheck = FALSE;
  172.            break;
  173.  
  174.        default:
  175.            printf(
  176.            "Usage: secure [-S<server name> -p<pipe name> -F<log file> -N -M]\n");
  177.            exit(1);
  178.        }
  179.    }
  180. }
  181.