File: DBM.java

package info (click to toggle)
libsapdbc-java 5567-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,840 kB
  • ctags: 6,242
  • sloc: java: 49,887; makefile: 83
file content (297 lines) | stat: -rw-r--r-- 9,800 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/*


    ========== licence begin GPL
    Copyright (C) 2002-2003 SAP AG

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    ========== licence end


*/


package com.sap.dbtech.powertoys;

import java.security.NoSuchAlgorithmException;
import java.sql.SQLException;
import java.util.Properties;

import com.sap.dbtech.jdbc.DriverSapDB;
import com.sap.dbtech.jdbc.exceptions.SQLExceptionSapDB;
import com.sap.dbtech.rte.comm.JdbcCommFactory;
import com.sap.dbtech.rte.comm.JdbcCommunication;
import com.sap.dbtech.rte.comm.NativeComm;
import com.sap.dbtech.rte.comm.RTEException;
import com.sap.dbtech.rte.comm.SocketComm;
import com.sap.dbtech.util.StructuredMem;
import com.sap.dbtech.util.Tracer;
import com.sap.dbtech.util.security.Authentication;
import com.sap.dbtech.util.security.SCRAMMD5;
/**
 * Executes administration commands for SAP DB
 */
public class DBM
{
    public static final String hostKeyC = "host";
    private static final String hostDefaultC = "";
    public static final String dbnameKeyC = "dbname";
    private static final String dbnameDefaultC = "";
    public static final String dbrootKeyC = "dbroot";
    private static final String dbrootDefaultC = "";
    public static final String userKeyC = "user";
    private static final String pgmNameC = "dbmsrv";
    private static final String transportC = "transport";

    private static final int alignSizeC = 8;
    static final int indicatorLengthC = 4;

    private JdbcCommunication connection;
    private boolean inCommunication;
    
    /**
       creates a new DBM.

       The following properties are used by this class:
        <UL>
        <LI>"host": start dbmserver on this host
        <LI>"dbname": start dbmserver for this database
        <LI>"dbroot": start dbmserver for this release/diretory
        <LI>"user": user,pwd implicit dbm connect (not yet implemented)
        <UL>
     */
    public DBM (Properties properties)
        throws RTEException
    {
        String host = properties.getProperty (hostKeyC, hostDefaultC);
        String dbname = properties.getProperty (dbnameKeyC, dbnameDefaultC);
        String dbroot = properties.getProperty (dbrootKeyC , dbrootDefaultC);
        JdbcCommFactory factory=null;

        try {
	        try {
	            if (DriverSapDB.loadNativeCommunication() == DriverSapDB.nativeCommunication_enabled) {
	                factory = NativeComm.factory;
	            } else {
	                factory = SocketComm.factory;
	            }
	            DriverSapDB.openTrace("",properties);
	            Tracer.print ("new DBM Connection ", properties);
	            this.connection = factory.xopen(host, dbname, dbroot, pgmNameC,
	                    properties);
	
	        } catch (Error linkErr) {
	            factory = SocketComm.factory;
	            this.connection = factory.xopen(host, dbname,
	                                            dbroot, pgmNameC, properties);
	        }
        }catch (RTEException rteExc) {
            Tracer.println ("using "+factory);
            Tracer.println ("=> FAILED");
            throw rteExc;
        }
        Tracer.println ("using "+this.connection);
        Tracer.println ("=> " + this);
 }

    /**
     * closes the connection
     */
    public void release ()
        throws RTEException
    {
        Tracer.println (this+"->release ()");
        if (this.connection != null) {
            try {
              try {
                this.cmd("release");
              }
              catch (Exception ignore) {}
              this.connection.release ();
            }
            finally {
                this.connection = null;
            }
        }
    }
    /**
     *
     */
    public void finalize ()
        throws RTEException
    {
        this.release ();
    }
    
    
    private String userLogon(String logonData) throws RTEException,
            DBMException {
        Authentication auth;
        try {
            auth = new Authentication();
        } catch (NoSuchAlgorithmException ex) {
            return this.cmd("USER_LOGON " + logonData, false);
        }
        int sepPos = logonData.indexOf(',');
        if (-1 == sepPos) {
            throw new DBMException(-24950, "ERR_USRFAIL:",
                    "User authorization failed [password not set]");
        }
        String user = logonData.substring(0, sepPos);
        String pass = logonData.substring(sepPos + 1).toUpperCase();
        String erg = null;
        try {
            erg = this.cmd("USER_GETCHALLENGE "
                    + user
                    + " METHODS "
                    + SCRAMMD5.algorithmname
                    + " "
                    + Tracer.Hex2String(auth.getClientchallenge())
                            .toUpperCase(), false);
        } catch (DBMException e) {
            if (e.getErrorID().equalsIgnoreCase("ERR_COMMAND")
                    && e.getErrorCode() == -24977) {
                return this.cmd("USER_LOGON " + logonData, false);
            } else {
                throw e;
            }
        }
        if (!erg.startsWith(SCRAMMD5.algorithmname)) {
            throw new DBMException(-24950, "ERR_USRFAIL:",
                    "User authorization failed [unknown authentication algorithm received]");
        }
        sepPos = erg.indexOf('\n');
        if (-1 == sepPos) {
            throw new DBMException(-24950, "ERR_USRFAIL:",
                    "User authorization failed [wrong format of server challenge]");
        }
        erg = erg.substring(sepPos + 1, erg.length() - 1);
        try {
            auth.parseServerChallenge(Tracer.String2Hex(erg));

            erg = this.cmd("USER_RESPONSE "
                    + Tracer.Hex2String(auth.getClientProof(pass.getBytes()))
                            .toUpperCase(), false);
            return erg;
        } catch (SQLExceptionSapDB ex1) {
            throw new DBMException(-24950, "ERR_USRFAIL:",
                    "User authorization failed [" + ex1.toString() + "]");
        }
    }
    /**
     * executes <i>cmdString </i> in the current dbm session.
     * 
     * @exception DBMException
     * @exception RTEException
     */
    public String cmd(String cmdString) throws RTEException, DBMException {
        try {
            Tracer.println(this + "->cmd (" + cmdString + ")");
            String erg = this.cmd(cmdString, true);
            Tracer.println("=> " + erg);
            return erg;
        } catch (DBMException e) {
            Tracer.println(" <-!");
            Tracer.traceException(e);
            throw e;
        } catch (RTEException err) {
            Tracer.println(" <-!");
            Tracer.traceException(err);
            throw err;
        }

    }

    public String cmd(String cmdString, boolean checklogon)
            throws RTEException, DBMException {
        Tracer.println(this + "->cmd (" + cmdString + ")");
        StructuredMem request;
        int alignedLen;
        StructuredMem reply;
        String result;

        if (checklogon) {
            cmdString = cmdString.trim();
            if (cmdString.toUpperCase().startsWith("USER_LOGON")) {
                cmdString = cmdString.substring("USER_LOGON".length()).trim();
                return userLogon(cmdString);
            }
        }
        /*
         * send request
         */
        request = this.connection.getRequestPacket();
        alignedLen = (cmdString.length() + alignSizeC - 1) / alignSizeC
                * alignSizeC;
        request.putString(cmdString, 0);
        this.connection.request(request, alignedLen);
        try {
        	this.inCommunication = true;
        	reply = this.connection.receive();
        	this.inCommunication = false;
        	String errorIndicator = reply.getString(0, Math.min(indicatorLengthC,
        			reply.size()));
	        if (errorIndicator.startsWith("OK")) {
	            int dataStart = errorIndicator.indexOf('\n') + 1;
	            result = reply.getString(dataStart, reply.size() - dataStart);
	        } else {
	            throw DBMException.create(reply);
	        }
	        return result;
        }
        finally {
        	this.inCommunication = false;
        }
    }
    
    public void cancel() throws SQLException
    {
    	if(this.inCommunication) {
    		this.connection.cancel();
    	}
    }
    
    /**
     * creates a new DBM by specifying the host and the dbname
     */
    public static DBM dbDBM (String host, String dbname)
        throws RTEException
    {
        Properties props = new Properties ();

        if (host != null) {
            props.put (hostKeyC, host);
        }
        if (dbname != null) {
            props.put (dbnameKeyC, dbname);
        }
        return new DBM (props);
    }
    /**
     * create a new DBM by specifying the host and the dbroot
     */
    public static DBM dbrootDBM (String host, String dbroot)
        throws RTEException
    {
        Properties props = new Properties ();

        if (host != null) {
            props.put (hostKeyC, host);
        }
        props.put (dbrootKeyC, dbroot);
        return new DBM (props);
    }

}